import type { CSSProperty, CSSPropertyOrVariable } from '@tenoxui/types';
import type { DirectValue, PropertyParamValue } from '@tenoxui/moxie';
export declare function createColorType(prop: CSSPropertyOrVariable | CSSPropertyOrVariable[], value: string, secondValue?: string): DirectValue;
export declare function processValue(value: string, unit: string, sizing?: number): string;
export declare function createSizingType(property: CSSProperty | CSSProperty[], sizing: number, valueOnly?: boolean, allowSecondValue?: boolean, allowFraction?: boolean, values?: Record<string, string>): PropertyParamValue;
