import { Dialog, InputList } from "fwtoolkit"; interface License { url: string; title: string; start?: string | false; } export interface Copyright { holder?: string | false; year?: number | false; freeToRead?: boolean; licenses?: License[]; } export declare const LICENSE_URLS: Array<[string, string]>; export declare class CopyrightDialog { copyright: Copyright; origCopyright: Copyright; dialog: Dialog | false; licensesList?: InputList; constructor(copyright: Copyright); getCurrentValue(): void; init(): Promise; bind(): void; } export {}; //# sourceMappingURL=index.d.ts.map