import { StyleRule } from '@vanilla-extract/css'; import { ButtonColorShared, ButtonVariantShared } from '../../../types'; import { ButtonCompoundVariant } from '../types'; /** * Builds the compound-variant entries for a single visual variant across every button color. * The array is generated once at module evaluation time (build time for Vanilla Extract), * so there is no per-render runtime cost in the browser. */ export declare const createButtonCompoundVariantUtils: (variant: ButtonVariantShared, getStyle: (color: ButtonColorShared) => StyleRule) => ButtonCompoundVariant[];