import * as t from '@babel/types'; import type { Variable } from './types'; /** * Will build up the CSS variables prop to be placed as inline styles. * * @param variables CSS variables that will be placed in the AST * @param transform Transform function that can be used to change the CSS variable expression */ export declare const buildCssVariables: (variables: Variable[], transform?: (expression: t.Expression) => t.Expression) => t.ObjectProperty[];