import { INode } from '@nextcloud/files'; import { ConflictInput } from '../../conflict-picker.ts'; type __VLS_Props = { /** * The existing node */ existing: INode; /** * The new incoming node */ incoming: ConflictInput; }; /** * Check the validitiy of the conflict resolution */ declare function validate(): void; type __VLS_PublicProps = { 'existingSelected': boolean; 'incomingSelected': boolean; } & __VLS_Props; declare const _default: import('vue').DefineComponent<__VLS_PublicProps, { validate: typeof validate; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:existingSelected": (value: boolean) => any; "update:incomingSelected": (value: boolean) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:existingSelected"?: ((value: boolean) => any) | undefined; "onUpdate:incomingSelected"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLFieldSetElement>; export default _default;