import type { ReactNode } from "react"; type PrintOnlyProps = { children: ReactNode; }; /** Visible only when printing — hidden on screen. */ export declare function PrintOnly({ children }: PrintOnlyProps): import("react").JSX.Element; export {}; //# sourceMappingURL=printOnly.d.ts.map