import { SvelteComponentTyped } from "svelte"; import type { TSize } from '../interfaces/size'; declare const __propDef: { props: { [x: string]: any; showSidebar?: boolean; size?: TSize; noPaddingBody?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { sidebar: {}; default: {}; }; }; export declare type PageProps = typeof __propDef.props; export declare type PageEvents = typeof __propDef.events; export declare type PageSlots = typeof __propDef.slots; export default class Page extends SvelteComponentTyped { } export {};