import { PropsWithChildren } from 'react'; import { DisplayTypes } from '../common'; type Props = PropsWithChildren<{ as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; id?: string; type?: DisplayTypes; className?: string; }>; declare function Display({ as: Heading, type, children, className, id, }: Props): import("react").JSX.Element; export default Display; //# sourceMappingURL=Display.d.ts.map