import { default as React } from 'react'; import { FormFieldComponentProps, VerificationServiceProps, Organization } from '../../../lib/types/types'; interface BranchOfServiceComponentProps { /** * @deprecated Orgs are fetch lazily, within this component, now * A list of orgs is no-longer passed-in and then filtered * Don't provide this any more */ organizations?: Organization[]; } export declare const BranchOfService: ({ autoFocus, onChange, value, isErrored, organizations, verificationService, intl, placeholder, disabled, }: FormFieldComponentProps & VerificationServiceProps & BranchOfServiceComponentProps) => import("react/jsx-runtime").JSX.Element; export declare const BranchOfServiceComponent: React.ComponentClass & VerificationServiceProps & BranchOfServiceComponentProps, "value" | "isErrored" | "onChange" | "disabled" | "onKeyDown" | "label" | "placeholder" | "autoFocus" | "isRequired" | "errorId" | "verificationService" | "organizations">, any> & { WrappedComponent: React.ComponentType & VerificationServiceProps & BranchOfServiceComponentProps & ReactIntl.InjectedIntlProps>; }; export {};