import { BoxProps } from "../Box"; export interface MetaProps extends BoxProps { heading: string; headingAs?: string; } export declare const Meta: (props: MetaProps) => JSX.Element;