interface ElementProps {
element: HTMLElement;
isThemeDark?: boolean;
isThemeGold?: boolean;
isSizeLarge?: boolean;
elementStyles?: Record;
}
interface OptionProps extends ElementProps {
isTypePrimary?: boolean;
isTypeSecondary?: boolean;
isTypeOutline?: boolean;
plainText?: HTMLElement | null;
}
export declare const primary: (props: ElementProps) => import('../../../builder/dist/index.d.ts').ElementModel;
export declare const secondary: (props: ElementProps) => import('../../../builder/dist/index.d.ts').ElementModel;
export declare const outline: (props: ElementProps) => import('../../../builder/dist/index.d.ts').ElementModel;
export declare const options: (props: OptionProps) => import('../../../builder/dist/index.d.ts').ElementModel;
export {};
//# sourceMappingURL=text.d.ts.map