@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
15 lines (14 loc) • 774 B
TypeScript
import type { ComboboxPopoverFactory, ComboboxPopoverProps, ComboboxPopoverStylesNames } from './ComboboxPopover';
import type { ComboboxPopoverValue } from './ComboboxPopover.types';
import type { ComboboxPopoverTargetProps } from './ComboboxPopoverTarget';
export { ComboboxPopover } from './ComboboxPopover';
export { ComboboxPopoverTarget } from './ComboboxPopoverTarget';
export type { ComboboxPopoverProps, ComboboxPopoverStylesNames, ComboboxPopoverFactory, ComboboxPopoverTargetProps, ComboboxPopoverValue, };
export declare namespace ComboboxPopover {
type Props = ComboboxPopoverProps;
type StylesNames = ComboboxPopoverStylesNames;
type Factory = ComboboxPopoverFactory;
namespace Target {
type Props = ComboboxPopoverTargetProps;
}
}