import { ReactElement } from 'react'; export interface WallpaperProps { children?: string; lineHeight?: number; } export declare function Wallpaper({ children, lineHeight }: WallpaperProps): ReactElement;