import React from 'react';
import { ILine } from '../Line/Line';
import { IColor, IValueBreakpoints, IVersion } from '../types';
export declare const IconMaterialDone: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<unknown>>;
export declare const IconDoneAnimated: (props: any) => import("react/jsx-runtime").JSX.Element;
export declare type IButtons = Omit<ILine, 'onChange'> & {
    version?: IVersion;
    colorSelected?: IColor;
    value?: any;
    valueDefault?: any;
    onChange?: (value: any) => any;
    select?: 'single' | 'multiple';
    unselect?: boolean;
    orientation?: 'vertical' | 'horizontal' | Partial<Record<IValueBreakpoints, 'vertical' | 'horizontal'>>;
    noCheckIcon?: boolean;
    elevation?: boolean;
    border?: boolean;
    chip?: boolean;
    fullWidth?: boolean;
};
declare const Buttons: React.FC<IButtons>;
export default Buttons;
