import { ReactNode } from 'react';
export declare type Props = {
    children: ReactNode;
    style?: object;
    className: string;
    theme: string;
    weight: string;
} & Partial<DefaultProps>;
export declare const defaultProps: {
    theme: "primary" | "secondary" | "success" | "error" | "default";
    weight: "light" | "lighter" | "bold" | "normal";
    className: string;
};
export declare type DefaultProps = Readonly<typeof defaultProps>;
