import { Dialog } from './dialog';
interface ICommandLinkerTrustDialogOptions {
    args: string;
    buttons: ReadonlyArray<Dialog.IButton>;
    command: string;
    commandLabel: string;
    defaultButton: number;
    hasTrustCommand: boolean;
    title: string;
}
export declare function showCommandLinkerTrustDialog(options: ICommandLinkerTrustDialogOptions): Promise<Dialog.IResult<void>>;
export {};
