export declare const NgxSmartModalConfig: {
    bodyClassOpen: string;
    prefixEvent: string;
};
export interface INgxSmartModalOptions {
    closable?: boolean;
    escapable?: boolean;
    dismissable?: boolean;
    customClass?: string;
    backdrop?: boolean;
    force?: boolean;
    hideDelay?: number;
    autostart?: boolean;
    target?: string;
    ariaLabel?: string;
    ariaLabelledBy?: string;
    ariaDescribedBy?: string;
    refocus?: boolean;
}
