import { NodePath, types } from '@babel/core'; /** * Processes the JSXElement nodes in the AST and replaces the 'k' syntax from '@kuma-ui/core' * with corresponding 'Box' component. This allows usage of the 'k' syntax as a shorthand for creating * styled components, e.g. is transformed to . * * @param {NodePath} node - The NodePath object representing the Program node. * @param {typeof types} t - The Babel types object. * @param {Record} importedStyleFunctions - An object containing the imported styled functions. */ declare const replaceKwithBox: (node: NodePath, t: typeof types, importedStyleFunctions: Record) => void; export { replaceKwithBox };