/** * Props for the Newline component. */ export interface NewlineProps { /** * Number of newlines to insert. * * @defaultValue 1 */ readonly count?: number; } /** * Adds one or more newline (`\n`) characters. Must be used within `` * components. * * @example * ```tsx * import {render, Text, Newline} from 'tinky'; * * render( * * Hello * * World * * ); * ``` */ export declare function Newline({ count }: NewlineProps): import("react").JSX.Element;