import { type ObjectSchema } from '../types/assets/types'; export type FetchObjectSchemasDetails = Pick; export type UseObjectSchemasState = { fetchObjectSchemas: (query: string) => Promise; objectSchemas: ObjectSchema[] | undefined; objectSchemasError: Error | undefined; objectSchemasLoading: boolean; totalObjectSchemas: number | undefined; }; export declare const useObjectSchemas: (workspaceId: string) => UseObjectSchemasState;