interface ISortConfigProps { value?: boolean; buttonLoading?: boolean; onClick?: () => void; onChange?: (checked: boolean) => void; } export declare const SortConfig: (props: ISortConfigProps) => import("react/jsx-runtime").JSX.Element; export {};