/** @typedef {typeof __propDef.props} ContainerProps */ /** @typedef {typeof __propDef.events} ContainerEvents */ /** @typedef {typeof __propDef.slots} ContainerSlots */ export default class Container extends SvelteComponentTyped<{ aligned: any; class?: string; justified?: boolean; style?: {}; fluid?: boolean; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } 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: { aligned: any; class?: string; justified?: boolean; style?: {}; fluid?: boolean; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};