import { FC, ReactNode } from 'react'; export declare const InputContainer: FC<{ children: ReactNode; disabled?: boolean; nofocus?: boolean; }>; export declare const InputPopover: FC<{ close: () => void; children: ReactNode; }>; export declare const InputOption: FC<{ icon: string; prefix?: string; label: string; helper?: string; click: (value: string) => void; reverse?: boolean; }>;