import { ReactNode } from 'react'; import { PrintProps } from '../../utils'; export interface PrinterProps extends PrintProps { children: ReactNode; shotcut?: boolean; } export default function Printer(props: PrinterProps): JSX.Element;