/** * Apply Tailwind CSS styles to a Figma node. * * @param node The target Figma node to apply styles to * @param styles Tailwind CSS style string (e.g., 'flex-col bg-white rounded-lg p-[16] gap-[8]') * @returns The styled node * * @example * ```typescript * // Create and style a frame * const frame = figma.createFrame(); * applyStyles(frame, 'flex-col bg-white rounded-lg p-[16] gap-[8]'); * * // Create and style a text node * const text = figma.createText(); * text.characters = 'Hello World'; * applyStyles(text, 'text-lg font-bold text-[#1a1a1a]'); * ``` */ export declare function applyCssStyles(node: T, styles?: string): Promise;