import type { ConfigWithDefaults } from '../config/index.ts'; import type { Logger } from '../isomorphic/types.ts'; export type FlakeEntry = { project?: string; component?: string; variant?: string; target?: string; snapshots?: Array<{ url?: string; width?: number; height?: number; }>; comparison?: { sha1?: string; sha2?: string; status?: string; url?: string; createdAt?: string; diffs?: number; unchanged?: number; added?: number; deleted?: number; link?: string; message?: string; project?: string; }; }; export type GetFlakesOptions = { project?: string | undefined; limit?: string | undefined; page?: string | undefined; component?: string | undefined; variant?: string | undefined; target?: string | undefined; sha?: string | undefined; }; export declare function formatFlakeOutput(flakes: Array): string; export default function getFlakes({ project, limit, page, component, variant, target, sha }: GetFlakesOptions, config: ConfigWithDefaults, logger: Logger): Promise>; //# sourceMappingURL=getFlakes.d.ts.map