///
import type { Components } from 'rc-picker/lib/interface';
import PickerButton from '../PickerButton';
export default function useComponents(components?: Components): {
date?: import("react").ComponentType> | undefined;
time?: import("react").ComponentType> | undefined;
week?: import("react").ComponentType> | undefined;
month?: import("react").ComponentType> | undefined;
quarter?: import("react").ComponentType> | undefined;
year?: import("react").ComponentType> | undefined;
decade?: import("react").ComponentType> | undefined;
datetime?: import("react").ComponentType> | undefined;
button: string | import("react").ComponentType | typeof PickerButton;
input?: string | import("react").ComponentType | undefined;
};