/// import type { SvelteComponentTyped } from "svelte"; export interface DropdownProps { /** * @default null */ class?: string | false | null; /** * Aligns the dropdown content with the right edge of the shell. * @deprecated * @default false */ right?: boolean; /** * Aligns the dropdown content such that it opens to the top of the shell, extending up. * @deprecated * @default false */ top?: boolean; /** * Dropdown horizontal alignment relative to the shell. * @default undefined */ horizontalAlignment?: string; /** * Dropdown vertical alignment relative to the shell. * @default undefined */ verticalAlignment?: string; } export default class Dropdown extends SvelteComponentTyped< DropdownProps, {}, { default: {} } > {}