import React from 'react'; import { ILine } from '../Line/Line'; import { IColor, ISize, ITonal, IValueBreakpoints, IVersion } from '../types'; export declare const IconMaterialDone: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const IconDoneAnimated: (props: any) => JSX.Element; export interface IButtons extends ILine { tonal?: ITonal; color?: IColor; version?: IVersion; colorSelected?: IColor; size?: ISize; value?: any; valueDefault?: any; onChange?: (value: any) => any; select?: 'single' | 'multiple'; unselect?: boolean; orientation?: 'vertical' | 'horizontal' | Partial>; noCheckIcon?: boolean; elevation?: boolean; border?: boolean; chip?: boolean; fullWidth?: boolean; disabled?: boolean; } declare const Buttons: React.FC; export default Buttons;