import * as React from 'react';
import { type SelectProps } from '../CustomSelect/CustomSelect';
import { type CustomSelectOptionInterface } from '../CustomSelect/types';
export type SelectType = 'default' | 'plain' | 'accent';
/**
 * @see https://vkui.io/components/select
 */
export declare const Select: <OptionT extends CustomSelectOptionInterface>({ children, className, ...props }: SelectProps<OptionT>) => React.ReactNode;
//# sourceMappingURL=Select.d.ts.map