/** * Table Queries Module * * Proporciona integración con TanStack Query para la tabla, * incluyendo normalización de datos de Strapi y traducción de filtros. * * @example * ```tsx * import { configureStrapiClient, useTeamsTable } from './queries' * * // Configurar cliente una vez al iniciar la app * configureStrapiClient({ * baseUrl: 'https://api.example.com', * token: 'your-token', * }) * * // Usar en componente * function TeamsTable() { * const { data, isLoading, pagination } = useTeamsTable({ * page: 1, * pageSize: 10, * }) * * return * } * ``` */ export * from './types'; export * from './utils'; export * from './api'; export * from './hooks'; export * from './providers'; //# sourceMappingURL=index.d.ts.map