interface MultiSelectCheckboxProps {
    checked: boolean;
    isDisabled?: boolean;
    isIndeterminate?: boolean;
}
export declare function MultiSelectCheckbox({ checked, isDisabled, isIndeterminate }: MultiSelectCheckboxProps): import("react/jsx-runtime").JSX.Element;
export declare const checkboxStyles: {
    container: string;
    checked: string;
    disabled: string;
};
export {};
