import React from 'react'; interface PromptProps { label: string; placeholder?: string; value: string; onChange: (val: string) => void; onSubmit: (val: string) => void; mask?: boolean; dimLabel?: boolean; } export declare const Prompt: React.FC; export {};