interface Props { value: string; options: string[]; onChange: (family: string) => void; searchPlaceholder?: string; } export declare function FontPicker({ value, options, onChange, searchPlaceholder }: Props): import("react").JSX.Element; export {};