@surveycake/rc
Version:
react component of surveycake
12 lines (11 loc) • 430 B
TypeScript
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;