import { EIconType } from '../../base/Icon/types';
import { EButtonSize, EButtonTypes } from '../../base/Button/types';
export type TThemeSwitchProps = {
    className?: string;
    withLabel?: boolean;
    type?: keyof typeof EButtonTypes;
    size?: keyof typeof EButtonSize;
    iconType?: keyof typeof EIconType;
};
//# sourceMappingURL=types.d.ts.map