import React from 'react'; export declare type ButtonProps = { outlined?: boolean; full?: boolean; size?: 'small' | 'large'; variant?: 'round' | 'square' | 'regular'; text?: string; colors?: { background?: string; text?: string; }; } & Omit, 'children'>; declare const Button: React.ForwardRefExoticComponent & React.RefAttributes>; export { Button };