#!/usr/bin/env node
interface ScreenshotOptions {
    component: string;
    theme?: string;
    mode?: "light" | "dark";
    output?: string;
    video?: boolean;
}
export declare function generateComponentScreenshot(options: ScreenshotOptions): Promise<void>;
export {};
//# sourceMappingURL=screenshot.d.ts.map