import React from 'react';
interface AccordionSelectItemProps {
    value: string;
    checked: boolean;
    indeterminate?: boolean;
    text: string;
    handleChangeValue: (value: string) => void;
}
export declare const useCustomStyle: (props?: any) => Record<"container" | "checkbox" | "greyBlock", string>;
declare const AccordionSelectItem: React.FC<AccordionSelectItemProps>;
export default AccordionSelectItem;
