import { SvelteComponent } from "svelte"; export declare const DROPDOWN: {}; import type { ANIMATE_SPEED, ROUNDED } from "../types"; declare const __propDef: { props: { [x: string]: any; animate?: ANIMATE_SPEED; id?: string | undefined; label?: string | undefined; animation?: "slide-left" | "slide-up" | "slide-right" | "slide-down" | "fade" | "zoom-in" | "zoom-out" | undefined; align?: "right" | "left" | undefined; backdrop?: string | boolean | undefined; containerClass?: string | undefined; closeOnOutsideClick?: boolean | undefined; rounded?: ROUNDED; size?: "sm" | "md" | "lg" | "full" | "auto" | "custom" | undefined; linkClass?: string | undefined; activeClass?: string | undefined; dividerClass?: string | undefined; headerClass?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { label: { attr: { id: string; "aria-label": string; "aria-haspopup": string; "aria-controls": string; "aria-expanded": boolean; }; label: string; }; default: {}; }; }; export type DropdownProps = typeof __propDef.props; export type DropdownEvents = typeof __propDef.events; export type DropdownSlots = typeof __propDef.slots; export default class Dropdown extends SvelteComponent { } export {};