import { CSSProperties } from 'react';
export declare const getCheckboxStyle: ({ checkboxStyle, checkboxSize, disabled, checked, checkboxCheckedColor, checkboxColor, checkboxBorderWidth, }: {
    checkboxStyle?: CSSProperties;
    checkboxSize?: string | number;
    disabled?: boolean;
    checked: boolean;
    checkboxCheckedColor?: string;
    checkboxColor?: string;
    checkboxBorderWidth: number;
}) => CSSProperties;
export declare const checkboxIconWrapperStyle: CSSProperties;
export declare const getCheckboxPartialStyle: (checkboxCheckedColor: string) => CSSProperties;
