export interface QueryTable { name: string; schema: string; } export interface QueryPagination { limit: number; offset: number; }