import { DialogRef } from 'angular2-modal'; import { BaseDialogModel, BaseDialogComponent } from "../services/DialogService"; export interface IIconIdentifier { cssClass: string; code: string; } export interface IIconPickerForm { okHandler: (selectedIcon: IIconIdentifier) => void; currentSiteUrl: string; } export declare class IconPickerForm extends BaseDialogComponent> { dialog: DialogRef>; static templateId: string; searchString: string; selectedIcon: IIconIdentifier; awesomeIcons: Array; constructor(dialog: DialogRef>); ok: () => void; selectIcon: (icon: IIconIdentifier) => void; filterIcon: (icons: IIconIdentifier[], searchIcon: string) => IIconIdentifier[]; }