import { SelectInputTheme } from './SelectInput';
import { SelectMenuTheme } from './SelectMenu';
export interface SelectTheme {
    /** Theme applied to the select input element. */
    selectInput: SelectInputTheme;
    /** Theme applied to the select dropdown menu. */
    selectMenu: SelectMenuTheme;
}
export declare const selectTheme: SelectTheme;
