export declare const selectContainer: import("@vanilla-extract/recipes").RuntimeFn<{
    isOpen: {
        true: {
            borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
        };
        false: {};
    };
    disabled: {
        true: {
            pointerEvents: "none";
            backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
            opacity: number;
        };
        false: {};
    };
    invalid: {
        true: {
            border: `2px solid var(--${string})` | `2px solid var(--${string}, ${string})` | `2px solid var(--${string}, ${number})`;
        };
        false: {};
    };
}>;
export declare const selectInputContainer: string;
export declare const selectInput: string;
export declare const selectPlaceholderContainer: string;
export declare const selectPlaceholder: import("@vanilla-extract/recipes").RuntimeFn<{
    isLabel: {
        true: {
            color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
        };
        false: {};
    };
}>;
export declare const selectOptionContainer: string;
export declare const selectOption: string;
