1 | import * as React from 'react';
|
2 | import type { Modifier } from '@popperjs/core';
|
3 | import { CSSModule } from './utils';
|
4 |
|
5 | export interface DropdownMenuProps extends React.HTMLAttributes<HTMLElement> {
|
6 | [key: string]: any;
|
7 | tag?: React.ElementType;
|
8 | dark?: boolean;
|
9 | right?: boolean;
|
10 | flip?: boolean;
|
11 | modifiers?: Modifier<string, any>[];
|
12 | cssModule?: CSSModule;
|
13 | persist?: boolean;
|
14 | strategy?: string;
|
15 | container?: string | HTMLElement | React.RefObject<HTMLElement>;
|
16 | updateOnSelect?: boolean;
|
17 | }
|
18 |
|
19 | declare class DropdownMenu extends React.Component<DropdownMenuProps> {}
|
20 | export default DropdownMenu;
|