import { ReactNode, FunctionComponent } from 'react';
import { SKIN_PRIORITY_MAP } from '../constants';
type ControlProps = {
    dataHook?: string;
    className?: string;
    onClick: () => void;
    icon: ReactNode;
    size?: string;
    skin?: keyof typeof SKIN_PRIORITY_MAP;
    disabled?: boolean;
};
declare const Control: FunctionComponent<ControlProps>;
export default Control;
//# sourceMappingURL=Control.d.ts.map