import { TemplateRef } from '@angular/core';
import { Orientation } from '../../core/enums/orientation';
import { UI } from '../../core/enums/ui';
export declare class CollapsibleComponent {
    readonly host = "jnt-collapsible-host";
    ui: typeof UI;
    _orientation: Orientation;
    set orientation(type: Orientation);
    get orientation(): Orientation;
    opened: boolean;
    icon: string;
    title: string;
    titleTemplate: TemplateRef<any>;
    contentTemplate: TemplateRef<any>;
}
