import React from 'react'; export declare function FilterPrompt({ label, value, hint, onChange, onSubmit, }: { label: string; value: string; hint: string; onChange: (value: string) => void; onSubmit: () => void; }): React.ReactElement;