import { CustomOptionCheckbox } from '../components/index.js';
import type { SelectParametersHooks } from '../types.js';
export declare const useSelectComponents: (props: SelectParametersHooks) => {
    Input: () => any;
    MenuList: (propsSelect: any) => import("react/jsx-runtime").JSX.Element;
    ValueContainer: (valueContainerProps: any) => import("react/jsx-runtime").JSX.Element;
    MultiValue?: (multiValueProps: any) => import("react/jsx-runtime").JSX.Element;
    Option: any;
    SingleValue: any;
} | {
    Input: () => any;
    MenuList: (propsSelect: any) => import("react/jsx-runtime").JSX.Element;
    ValueContainer: (valueContainerProps: any) => import("react/jsx-runtime").JSX.Element;
    MultiValue?: (multiValueProps: any) => import("react/jsx-runtime").JSX.Element;
    Option?: typeof CustomOptionCheckbox;
};
