import { LightColors } from '../colors/index.ts'; /** * Generates a recipe variant map for every semantic color token in the theme, * plus a `transparent` option. * Useful when a component should accept any theme color as a prop. * * @param property - The CSS property to set (e.g. 'background', 'color', 'borderColor'). * @param extra * @returns A record suitable for use inside a Vanilla Extract recipe's `variants`. * * @example * variants: { * backgroundColor: createColorVariants('background'), * } */ export declare const createColorVariants: = Record>(property: "background" | "backgroundColor" | "color" | "borderColor", extra?: TExtra) => Record>;