///
import { ButtonProps } from '../Button';
export declare type LocalOptionButtonProps = {
checked?: boolean;
isFullWidth?: boolean;
onChange?: ({ checked: boolean, value: string }: {
checked: any;
value: any;
}) => void;
readOnly?: boolean;
value?: string;
};
export declare type OptionButtonProps = ButtonProps & LocalOptionButtonProps;
export declare const OptionButton: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};