import type { ObserveView } from '../schemas/sdk';
export interface ObserveCliOptions {
    apikey?: string;
    days?: string;
    action?: string;
    device?: string;
    versionName?: string;
    sort?: string;
    limit?: string;
    json?: boolean;
    supaHost?: string;
    supaAnon?: string;
}
export declare function observeCommand(view: ObserveView, appIdArg: string | undefined, options: ObserveCliOptions, deviceIdArg?: string): Promise<void>;
