/** @typedef {typeof __propDef.props} SegmentProps */ /** @typedef {typeof __propDef.events} SegmentEvents */ /** @typedef {typeof __propDef.slots} SegmentSlots */ export default class Segment extends SvelteComponentTyped<{ attached: any; aligned: any; floated: any; class?: string; disabled?: boolean; secondary?: boolean; inverted?: boolean; style?: {}; color?: string; raised?: boolean; placeholder?: boolean; stacked?: boolean; piled?: boolean; vertical?: boolean; loading?: boolean; tertiary?: boolean; tall?: boolean; double?: boolean; padded?: boolean; fitted?: boolean; compact?: boolean; circular?: boolean; clearing?: boolean; basic?: boolean; blurring?: boolean; dimmable?: boolean; dimmed?: boolean; container?: boolean; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type SegmentProps = typeof __propDef.props; export type SegmentEvents = typeof __propDef.events; export type SegmentSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { attached: any; aligned: any; floated: any; class?: string; disabled?: boolean; secondary?: boolean; inverted?: boolean; style?: {}; color?: string; raised?: boolean; placeholder?: boolean; stacked?: boolean; piled?: boolean; vertical?: boolean; loading?: boolean; tertiary?: boolean; tall?: boolean; double?: boolean; padded?: boolean; fitted?: boolean; compact?: boolean; circular?: boolean; clearing?: boolean; basic?: boolean; blurring?: boolean; dimmable?: boolean; dimmed?: boolean; container?: boolean; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};