File size: 1,043 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import { SvelteComponent } from "svelte";
import type { InputEvents, InputProps } from "../types.js";
declare const __propDef: {
props: InputProps;
slots: {
default: {
builder: {
'data-complete': string | undefined;
placeholder: string;
disabled: boolean | undefined;
type: "text" | "password";
value: string;
} & {
[x: `data-melt-${string}`]: "";
} & {
action: (node: HTMLInputElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"input" | "keydown" | "blur" | "change" | "focus" | "paste">;
};
};
};
events: InputEvents;
};
export type PinInputInputProps = typeof __propDef.props;
export type PinInputInputEvents = typeof __propDef.events;
export type PinInputInputSlots = typeof __propDef.slots;
export default class PinInputInput extends SvelteComponent<PinInputInputProps, PinInputInputEvents, PinInputInputSlots> {
}
export {};
|