import * as React from "react"; declare type Arg = { onChange: (input: string) => void; }; declare type Props = { openButton: React.ReactNode | React.ReactNode[]; onChange: (input: string) => void; children: (arg: Arg) => React.ReactNode; }; declare const CustomPicker: ({ openButton, onChange, children }: Props) => JSX.Element; export default CustomPicker;