/// import type { IRegion } from '../account/AccountService'; import type { IFormInputProps } from '../presentation'; export interface IRegionSelectInputProps extends IFormInputProps { account: string; readOnly?: boolean; regions: IRegion[]; } export declare function RegionSelectInput(props: IRegionSelectInputProps): JSX.Element;