import Listr from 'listr2'; import { ClientContext, DashboardContext, HostContext, TokenContext } from './context'; declare type CreateSnapshotParams = { width: number; height: number; max_age: number; }; declare type CreateSnapshotsContext = ClientContext & DashboardContext & HostContext & TokenContext; export declare function dashboardSnapshot(slug: string, dir: string, { width, height, max_age, }: CreateSnapshotParams): Listr.ListrTask; export {};