import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; col?: any; offset?: boolean; auto?: any; sm?: any; md?: any; lg?: any; xl?: any; xxl?: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type ColProps = typeof __propDef.props; export declare type ColEvents = typeof __propDef.events; export declare type ColSlots = typeof __propDef.slots; export default class Col extends SvelteComponentTyped { } export {};