export declare const checkboxLabelCSS: import("@vanilla-extract/recipes").RuntimeFn<{ disabled: { true: { cursor: "not-allowed"; color: string; }; }; required: { true: { ':after': { content: "*"; }; }; }; readOnly: { true: { cursor: "not-allowed"; }; }; }>; export declare const checkboxKnobCSS: import("@vanilla-extract/recipes").RuntimeFn<{ hasChildren: { true: { marginRight: string; }; false: { marginRight: number; }; }; disabled: { true: {}; false: {}; }; hasError: { true: {}; false: {}; }; checked: { true: {}; false: {}; indeterminate: {}; undefined: {}; }; readOnly: { true: { backgroundColor: `var(--${string})`; }; }; }>; export declare const checkboxIconCSS: string;