import { IntegrationSource } from '../base.js'; import type { SourceOptions, SourceResult } from '../types.js'; /** * Figma source - fetches design specs, tokens, components, assets, and content from Figma * * Delegates to FigmaIntegration for actual API calls */ export declare class FigmaSource extends IntegrationSource { name: string; description: string; private integration; isAvailable(): Promise; fetch(identifier: string, options?: SourceOptions): Promise; protected getRequiredCredentialKey(): string; getHelp(): string; } //# sourceMappingURL=figma.d.ts.map