export type KlevuTypographyVariant = "h1" | "h2" | "h3" | "h4" | "body-l" | "body-m" | "body-s" | "body-xs" | "body-l-bold" | "body-m-bold" | "body-s-bold" | "body-xs-bold"; /** * Klevu typography component. This component is used in most places to set correct font in component pieces. * @slot default - Typography text * */ export declare class KlevuTypography { /** * Variant of heading */ variant: KlevuTypographyVariant; /** * Display the text in full width. Usefull when typography needs to be used as a block element. */ fullWidth?: boolean; render(): any; }