5 lines
210 B
TypeScript
5 lines
210 B
TypeScript
import type { SelectItemProps } from "../types.js";
|
|
declare const SelectItem: import("svelte").Component<SelectItemProps, {}, "ref">;
|
|
type SelectItem = ReturnType<typeof SelectItem>;
|
|
export default SelectItem;
|