import '@material/web/icon/icon'; import '@material/web/select/outlined-select'; import '@material/web/select/select-option'; import '@material/web/dialog/dialog'; import '@material/web/textfield/outlined-text-field'; import { LitElement } from 'lit'; import { AddressInputAddress } from './types/address-input-address'; import { MdDialog } from '@material/web/dialog/dialog'; import { MdOutlinedTextField } from '@material/web/textfield/outlined-text-field'; import { MdOutlinedSelect } from '@material/web/select/outlined-select'; export declare class ManualAddressDialog extends LitElement { protected accessor dialog: MdDialog; accessor label: string; accessor showCounty: boolean; accessor showStreet2: boolean; accessor countries: string[]; protected accessor street: string; protected accessor street2: string; protected accessor city: string; protected accessor county: string; protected accessor country: string; protected accessor state: string; protected accessor zip: string; protected accessor allInputs: NodeListOf; resolve: (value: Partial | null) => void; open(address: AddressInputAddress | null | undefined): Promise | null>; validate(): boolean; reset(): Promise; static styles: import("lit").CSSResult[]; render(): import("lit-html").TemplateResult<1>; } //# sourceMappingURL=manual-address-dialog.d.ts.map