export interface CustomPrintConfig {
  data?: any;
  showPdfBtn?: boolean;
  template: string;
  title?: string;
  type?: 'html' | 'html-file' | 'vue';
}

export interface CustomPrintPreviewExpose {
  print: () => void;
  reload: () => void;
}
