type Value = string | undefined | null;
type Values = Value | Value[] | Record<string, boolean | string> | CSSStyleDeclaration;
declare const toClass: (...args: Values[]) => string;
declare const toStyle: (...args: Values[]) => string;

export { type Values, toClass, toStyle };
