/** * Defines the vars that decide the color * @internal */ declare const vars: { text: `var(--${string})`; icon: `var(--${string})`; borderColor: `var(--${string})`; }; /** * Defines the style for text, icons and border colors * @internal */ export declare const colorUtils: import("@vanilla-extract/recipes").RuntimeFn<{ color: { critical: { vars: { [vars.text]: string; [vars.icon]: string; [vars.borderColor]: string; }; }; neutral: { vars: { [vars.text]: string; [vars.icon]: string; [vars.borderColor]: string; }; }; primary: { vars: { [vars.text]: string; [vars.icon]: string; [vars.borderColor]: string; }; }; success: { vars: { [vars.text]: string; [vars.icon]: string; [vars.borderColor]: string; }; }; warning: { vars: { [vars.text]: string; [vars.icon]: string; [vars.borderColor]: string; }; }; }; variant: { default: {}; accent: {}; }; disabled: { true: {}; false: {}; }; }>; export { vars as colorUtilsVars };