import { JSX } from 'preact';
import { default as IBaseComponentProps } from './IBaseComponentProps';
import { default as TSizes } from './TSizes';
interface ITypographyProps extends IBaseComponentProps {
    bold?: boolean;
    children: JSX.Element | string | JSX.Element[] | (JSX.Element | string)[];
    fullWidth?: boolean;
    textAlign?: 'left' | 'center' | 'right';
    size?: TSizes;
}
export default ITypographyProps;
//# sourceMappingURL=ITypographyProps.d.ts.map