import { Ref, VNodeChild } from 'vue'; import { Paging } from '../../types'; export interface XRequestEvents { prepare: [parameters: { path: PT; query: QR; }]; } export interface XRequestProps { content?: (scope: { data: D; isFetching: boolean; paging: Paging; path: PT; query: QR; search: () => PromiseLike; }) => VNodeChild; request: () => { data: Ref; execute: () => PromiseLike; isFetching: Ref; paging: Ref; path: Ref; query: Ref; url: U; }; } declare const __VLS_export: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: import('vue').PublicProps & __VLS_PrettifyLocal & { onPrepare?: ((parameters: { path: PT; query: QR; }) => any) | undefined; }> & (typeof globalThis extends { __VLS_PROPS_FALLBACK: infer P; } ? P : {}); expose: (exposed: import('vue').ShallowUnwrapRef<{ data: Ref; execute: () => PromiseLike; isFetching: Ref; paging: Ref; path: Ref; query: Ref; search: import('@vueuse/core').UseDebounceFnReturn<() => Promise>; url: U; }>) => void; attrs: any; slots: { default: (scope: { data: D; isFetching: boolean; paging: Paging; path: PT; query: QR; search: () => PromiseLike; }) => VNodeChild; }; emit: (evt: "prepare", parameters: { path: PT; query: QR; }) => void; }>) => import('vue').VNode & { __ctx?: NonNullable>; }; declare const _default: typeof __VLS_export; export default _default; type __VLS_PrettifyLocal = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};