export declare class FoldableAction {
    private readonly _priority;
    private readonly _title;
    private readonly _link;
    private readonly _style;
    constructor(priority: number, title: string, link: string, style: 'primary' | 'secondary' | 'danger');
    get priority(): number;
    get title(): string;
    get link(): string;
    get style(): 'primary' | 'secondary' | 'danger';
}
