import { default as React } from 'react'; import { ButtonProps } from '../button/button'; export interface InfoButtonProps extends Omit { /** * If true, applies a small size to the InfoButton * @default false */ isSmall?: boolean; /** * Children elements to be rendered inside the InfoButton */ children?: React.ReactNode; color?: 'default' | 'inverted'; } export declare const InfoButton: React.ForwardRefExoticComponent & React.RefAttributes>; export default InfoButton;