export declare const driftctlVersion = "v0.19.0";
interface DriftCTLOptions {
    quiet?: true;
    filter?: string;
    output?: string;
    to?: string;
    headers?: string;
    'tfc-token'?: string;
    'tfc-endpoint'?: string;
    'tf-provider-version'?: string;
    strict?: true;
    deep?: true;
    driftignore?: string;
    'tf-lockfile'?: string;
    'config-dir'?: string;
    from?: string;
}
export declare function parseArgs(commands: string[], options: DriftCTLOptions): string[];
export declare function driftctl(args: string[]): Promise<number>;
export declare function findDriftCtl(): Promise<string>;
export {};
