import { ReactNode } from "react"; interface PickerTitleProps { className?: string; children?: ReactNode; } export default function PickerTitle(props: PickerTitleProps): JSX.Element; export {};