/** @typedef {typeof __propDef.props} ContainerProps */ /** @typedef {typeof __propDef.events} ContainerEvents */ /** @typedef {typeof __propDef.slots} ContainerSlots */ /** * Container adds layout and identity to input elements. It provides a * canonical way to add labels, descriptions and validation to inputs. */ export default class Container extends SvelteComponentTyped<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, { label: {}; default: { hintId: string; input: HTMLInputElement | undefined; inputId: string; }; hint: {}; }> { } export type ContainerProps = typeof __propDef.props; export type ContainerEvents = typeof __propDef.events; export type ContainerSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent; }; slots: { label: {}; default: { hintId: string; input: HTMLInputElement | undefined; inputId: string; }; hint: {}; }; }; export {};