import React from 'react'; import { BoxProps } from '../../atoms/box/index.js'; export declare const DEFAULT_STICK = "left"; /** * Available values for {@link DropDown}.stick prop * @memberof DropDown */ export type DropDownStickProp = 'left' | 'right'; /** * Props passed to DropDown element. * @property {string} [...] Other props from {@link BoxProps} * @memberof DropDown * @extends BoxProps */ export type DropDownProps = { /** Indicates if menu should stick to left or right */ stick?: DropDownStickProp; children?: React.ReactNode; } & BoxProps; /** * @load ./drop-down.doc.md * @hideconstructor * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-molecules-dropdown--default Storybook} * @component * @subcategory Molecules * @section design-system */ declare const DropDown: React.FC; export { DropDown }; export default DropDown;