DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
1.51 kB
import { SvelteComponent } from "svelte";
import type { Transition } from "../../../internal/types.js";
import type { ContentEvents, ContentProps } from "../types.js";
declare class __sveltets_Render<T extends Transition, In extends Transition, Out extends Transition> {
props(): ContentProps<T, In, Out>;
events(): ContentEvents;
slots(): {
default: {
builder: {
readonly hidden: true | undefined;
readonly id: string;
readonly role: "listbox";
readonly style: string;
} & {
[x: `data-melt-${string}`]: "";
} & {
action: (node: HTMLElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"pointerleave">;
};
};
};
}
export type SelectContentProps<T extends Transition, In extends Transition, Out extends Transition> = ReturnType<__sveltets_Render<T, In, Out>['props']>;
export type SelectContentEvents<T extends Transition, In extends Transition, Out extends Transition> = ReturnType<__sveltets_Render<T, In, Out>['events']>;
export type SelectContentSlots<T extends Transition, In extends Transition, Out extends Transition> = ReturnType<__sveltets_Render<T, In, Out>['slots']>;
export default class SelectContent<T extends Transition, In extends Transition, Out extends Transition> extends SvelteComponent<SelectContentProps<T, In, Out>, SelectContentEvents<T, In, Out>, SelectContentSlots<T, In, Out>> {
}
export {};