import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; fluid?: boolean | undefined; style?: string | undefined | null; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type ContainerProps = typeof __propDef.props; export declare type ContainerEvents = typeof __propDef.events; export declare type ContainerSlots = typeof __propDef.slots; export default class Container extends SvelteComponentTyped { } export {};