import { FC } from 'react'; export declare const Snippet: FC<{ icon: string; prefix?: string; label: string; value?: string; click?: () => void; options?: Array<{ label: string; helper?: string; icon: string; prefix?: string; click?: () => void; }>; }>; export declare const Dropdown: FC<{ open: boolean; close: () => void; options: Array<{ label: string; helper?: string; icon: string; prefix?: string; click?: () => void; }>; }>;