import { type StyledProps } from "./Styled"; /** * moaui Styled Typography * @param props - children, variant, color, width, height, size, verTop, verCenter, verBottom, horLeft, horCenter, horRight, center * @example * * {children} * * @returns TypographyComponent */ declare const Typography: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; declare const SampleProps: { children: string; variant: import("../../Common/UnionType").CustomUnionType; color: import("../../Common/UnionType").CustomUnionType; width: string; height: string; size: import("../../Common/UnionType").CustomUnionType; verTop: boolean; verCenter: boolean; verBottom: boolean; horLeft: boolean; horCenter: boolean; horRight: boolean; center: boolean; }; export default Typography; export { type StyledProps as TypographyProps, SampleProps as TypographySample }; //# sourceMappingURL=index.d.ts.map