import { FindAppDataSchemasQuery } from '@membranehq/sdk'; export declare function useAppDataSchemas(query?: FindAppDataSchemasQuery): { items: { id: string; name: string; uuid?: string | undefined; key?: string | undefined; description?: string | undefined; meta?: Record | undefined; instanceKey?: string | undefined; appDataSchemaId?: string | undefined; schema?: any; code?: string | undefined; state?: import("@membranehq/sdk").WorkspaceElementState | undefined; errors?: import("@membranehq/sdk").ErrorDataSchema[] | undefined; revision?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; isDeactivated?: boolean | undefined; isReadOnly?: boolean | undefined; appDataSchemaRevision?: string | undefined; archivedAt?: string | undefined; isCustomized?: boolean | undefined; error?: import("@membranehq/sdk").ErrorDataSchema | undefined; userId?: string | undefined; tenantId?: string | undefined; user?: any; appDataSchema?: any; }[]; refresh: () => Promise; refreshing: boolean; loadMore: () => Promise; loadingMore: boolean; loading: boolean; error: any; appDataSchemas: { id: string; name: string; uuid?: string | undefined; key?: string | undefined; description?: string | undefined; meta?: Record | undefined; instanceKey?: string | undefined; appDataSchemaId?: string | undefined; schema?: any; code?: string | undefined; state?: import("@membranehq/sdk").WorkspaceElementState | undefined; errors?: import("@membranehq/sdk").ErrorDataSchema[] | undefined; revision?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; isDeactivated?: boolean | undefined; isReadOnly?: boolean | undefined; appDataSchemaRevision?: string | undefined; archivedAt?: string | undefined; isCustomized?: boolean | undefined; error?: import("@membranehq/sdk").ErrorDataSchema | undefined; userId?: string | undefined; tenantId?: string | undefined; user?: any; appDataSchema?: any; }[]; };