/** Accept a raw file key OR a figma.com URL (/file/, /design/, /board/, /proto/) → the key. */ export declare function fileKeyFrom(fileKeyOrUrl: any): string; /** Accept a comma-string OR array of node ids; map URL form `1-23` → API `1:23`; join with commas. */ export declare function normalizeNodeIds(ids: any): string; /** Extract the `node-id` query param from a Figma URL, dash→colon. */ export declare function nodeIdFromUrl(url: any): string; /** * Dev-Mode-style spec for a REST node: size, position, opacity, cornerRadius, * fills (hex), strokes, effects, auto-layout, and text style — recursing * `depth` levels into children. Used by figma_get_node_specs. */ export declare function nodeSpec(n: any, depth: any): any; export declare const figmaSkill: any;