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: ({ children, className, ...props }: SelectProps) => React.ReactNode; //# sourceMappingURL=Select.d.ts.map