import React from 'react'; export type ButtonContainerProps = React.ButtonHTMLAttributes & { /** * You can pass the primary, default, secondary name of the colors or your specified color value */ readonly color?: 'default' | 'primary' | 'secondary' | string; /** * If true, then expect SVG icon as children. The button will be rendered as icon button * Example: * ```tsx * * ``` ` */ readonly iconOnly?: boolean; }; declare const _default: React.ForwardRefExoticComponent & { /** * You can pass the primary, default, secondary name of the colors or your specified color value */ readonly color?: string | undefined; /** * If true, then expect SVG icon as children. The button will be rendered as icon button * Example: * ```tsx * * ``` ` */ readonly iconOnly?: boolean | undefined; } & React.RefAttributes>; export default _default;