import { type ReactNode } from 'react';
type RegularProps = {
    variant?: 'normal' | 'small' | 'big' | 'capitalized';
    isDisabledOnOverlay?: boolean;
    children?: ReactNode;
    className?: string;
};
export declare const Regular: import("react").MemoExoticComponent<({ variant, isDisabledOnOverlay, children, className, }: RegularProps) => import("@emotion/react/jsx-runtime").JSX.Element | null>;
export {};
