/** based on framer-motion@4.1.17, Copyright (c) 2018 Framer B.V. */ import type { VariantLabels } from "../motion/types"; import type { Writable } from 'svelte/store'; /** * @public */ export interface PresenceContextProps { id: number; presenceKey?: any; isPresent: boolean; register: (id: number) => () => void; onExitComplete?: (id: number) => void; initial?: false | VariantLabels; custom?: any; } /** * @public */ export declare const PresenceContext: (c?: any) => Writable; //# sourceMappingURL=PresenceContext.d.ts.map