import '@material/web/dialog/dialog'; import '@material/web/icon/icon'; import '@material/web/button/text-button'; import { LitElement } from 'lit'; import { MdDialog } from '@material/web/dialog/dialog'; import '@material/web/textfield/outlined-text-field'; /** * existing-url-dialog * * @element existing-url-dialog * */ export declare class ExistingUrlDialog extends LitElement { accessor dialogHeaderText: string; accessor closeButtonText: string; protected accessor imageUrl: string | undefined; protected accessor downloadSrc: string | undefined; protected accessor filename: string | undefined; url: string; protected accessor dialog: MdDialog; urlInput: HTMLInputElement; open(imageUrl: string, downloadSrc?: string, filename?: string): Promise; _handleInputChange(): void; _sendModifiedUrl(): void; static styles: import("lit").CSSResult[]; render(): import("lit-html").TemplateResult<1>; } //# sourceMappingURL=existing-url-dialog.d.ts.map