import { LitElement, PropertyValueMap } from 'lit';
import type { Position } from '@blueprintui/components/internals';
declare const BpDropdown_base: (new (...args: any[]) => import("@blueprintui/orbit/").PopoverMixinInterface) & typeof LitElement;
/**
* ```typescript
* import '@blueprintui/components/include/dropdown.js';
* ```
*
* ```html
*
*
*
* ```
*
* @summary The dropdown are a is a generic popup component that can be positioned relative to an anchor element.
* @element bp-dropdown
* @since 1.0.0
* @event open - dispatched when the dialog is opened
* @event close - dispatched when the dialog is closed
* @command --toggle-popover
* @command --show-popover
* @command --hide-popover
* @slot - content
* @cssprop --padding
* @cssprop --filter
* @cssprop --background
* @cssprop --color
* @cssprop --width
* @cssprop --height
* @cssprop --min-width
* @cssprop --min-height
* @cssprop --font-size
*/
export declare class BpDropdown extends BpDropdown_base {
#private;
/** Controls the position of the dropdown relative to its anchor element */
accessor position: Position;
/** Controls whether the dropdown displays a close button, allowing users to dismiss it */
accessor closable: boolean;
/** Provides internationalization strings for accessibility labels and screen reader announcements */
accessor i18n: {
copy: string;
sort: string;
none: string;
ascending: string;
descending: string;
expand: string;
close: string;
resize: string;
filter: string;
loading: string;
show: string;
hide: string;
previous: string;
next: string;
first: string;
last: string;
today: string;
browse: string;
removeFile: string;
files: string;
resizeColumn: string;
closeDetails: string;
noData: string;
action: string;
dropTarget: string;
firstPage: string;
previousPage: string;
nextPage: string;
lastPage: string;
pageSize: string;
pagination: string;
increment: string;
decrement: string;
};
static styles: CSSStyleSheet[];
get popoverConfig(): {
readonly type: "auto";
readonly focusTrap: false;
readonly scrollLock: false;
readonly modal: false;
};
render(): import("lit").TemplateResult<1>;
connectedCallback(): void;
protected firstUpdated(props: PropertyValueMap): void;
}
export {};