export declare type PepDialogSizeType = 'inline' | 'small' | 'regular' | 'large' | 'full-screen'; export declare type PepDialogActionsType = 'close' | 'cancel-continue' | 'cancel-ok' | 'cancel-delete' | 'custom'; export declare class PepDialogActionButton { title: string; className: string; callback: () => void; constructor(title?: string, className?: string, callback?: () => void); } export declare class PepDialogData { title?: string; actionsType?: PepDialogActionsType; content?: any; showClose?: boolean; showHeader?: boolean; showFooter?: boolean; actionButtons?: Array; constructor(options: { title?: string; actionsType?: PepDialogActionsType; content?: any; contentDisabled?: boolean; showClose?: boolean; showHeader?: boolean; showFooter?: boolean; actionButtons?: Array; }); } export declare class PepDialogCustomizeData extends PepDialogData { [key: string]: any; constructor(options: any); }