import { SvelteComponentTyped } from "svelte"; import type { Record } from 'pocketbase'; declare const __propDef: { props: any; events: { [evt: string]: CustomEvent; }; slots: { default: { user: Record; }; signedout: {}; loading: {}; }; }; export type UserProps = typeof __propDef.props; export type UserEvents = typeof __propDef.events; export type UserSlots = typeof __propDef.slots; export default class User extends SvelteComponentTyped { } export {};