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