/** @typedef {typeof __propDef.props} ColumnProps */ /** @typedef {typeof __propDef.events} ColumnEvents */ /** @typedef {typeof __propDef.slots} ColumnSlots */ export default class Column extends SvelteComponentTyped<{ aligned: any; floated: any; wide: any; class?: string; style?: {}; color?: string; doubling?: boolean; visibility?: string; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type ColumnProps = typeof __propDef.props; export type ColumnEvents = typeof __propDef.events; export type ColumnSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { aligned: any; floated: any; wide: any; class?: string; style?: {}; color?: string; doubling?: boolean; visibility?: string; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};