import type { FunctionComponent, OptionHTMLAttributes, ReactNode, SelectHTMLAttributes } from 'react';
interface SelectDisplayProps {
fullWidth?: boolean;
value?: SelectHTMLAttributes['value'];
onChange?: React.ChangeEventHandler;
children: ReactNode;
}
interface SelectDisplayOptionProps {
value: OptionHTMLAttributes['value'];
disabled?: boolean;
children: ReactNode;
}
/** @public */
export interface SelectDisplayComponent extends FunctionComponent {
Option: FunctionComponent;
}
export declare const SelectDisplay: SelectDisplayComponent;
export {};