import * as React from 'react';
import type { HasAlign, HasRootRef } from '../../types';
import { type FormFieldProps } from '../FormField/FormField';
import type { SelectType } from '../Select/Select';
export interface SelectMimicryProps extends React.AllHTMLAttributes<HTMLElement>, HasRootRef<HTMLElement>, HasAlign, Pick<FormFieldProps, 'before' | 'after' | 'status'> {
    /**
     * Включает многострочный режим отображения.
     */
    multiline?: boolean;
    /**
     * Блокировка взаимодействия с компонентом.
     */
    disabled?: boolean;
    /**
     * Тип селекта, влияющий на внешний вид компонента.
     */
    selectType?: SelectType;
}
/**
 * @see https://vkui.io/components/select-mimicry
 */
export declare const SelectMimicry: ({ tabIndex, placeholder, children, align, getRootRef, multiline, disabled, onClick, before, after, selectType, status, className, autoFocus, ...restProps }: SelectMimicryProps) => React.ReactNode;
//# sourceMappingURL=SelectMimicry.d.ts.map