import { TypographyProps } from "@material-ui/core/Typography";
export interface TextProps extends Omit<TypographyProps, "variant"> {
    variant?: "caption1" | "caption2" | "small1" | "small2" | "label" | TypographyProps["variant"];
    customStyle?: () => string;
}
declare const _default: import("styled-components").StyledComponent<(props: TextProps) => JSX.Element, any, {}, never>;
export default _default;
