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