import { SvelteComponentTyped } from "svelte"; import type { TSize } from '../interfaces/size'; declare const __propDef: { props: { [x: string]: any; borderRight?: boolean; size?: TSize; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type SidebarProps = typeof __propDef.props; export declare type SidebarEvents = typeof __propDef.events; export declare type SidebarSlots = typeof __propDef.slots; export default class Sidebar extends SvelteComponentTyped { } export {};