import * as React from "react"; interface AllowedDomainsInputProps { value: string[]; onChange: (domains: string[]) => void; onValidate?: (domain: string) => { valid: boolean; error?: string; cleanedDomain?: string; }; label?: string; placeholder?: string; disabled?: boolean; error?: string | null; helperText?: string; className?: string; } declare const AllowedDomainsInput: React.ForwardRefExoticComponent>; export { AllowedDomainsInput }; export type { AllowedDomainsInputProps }; //# sourceMappingURL=allowed-domains-input.d.ts.map