export interface ModalComponent<SystelabModalContext> {
}
export declare class SystelabModalContext {
    dialogClass: string;
    width: number;
    height: number;
    minWidth: number;
    minHeight: number;
    maxWidth: number;
    maxHeight: number;
    widthRelative: string;
    heightRelative: string;
    minWidthRelative: string;
    minHeightRelative: string;
    maxWidthRelative: string;
    maxHeightRelative: string;
    positionX: any;
    positionY: any;
    fullScreen: boolean;
    isBlocking: boolean;
    keyboard: any;
    isContextDialog: boolean;
    showClose: boolean;
    setDefaultSize(w: number, h: number): void;
}
