import { Ref, SlotsType, VNode } from 'vue'; export interface PresenceProps { /** * Conditional to mount or unmount the child element. Similar to `v-if` * * @required true */ present: boolean; /** * Force the first child element to render all the time. * Useful for programmatically render grandchild component together with the exposed `present` * * @defaultValue false */ forceMount?: boolean; } declare const _default: import('vue').DefineComponent<{ present: { type: BooleanConstructor; required: true; }; forceMount: { type: BooleanConstructor; }; }, () => VNode | null, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly>, { forceMount: boolean; }, SlotsType<{ default: (opts: { present: Ref; }) => any; }>>; export default _default;