import type { ComponentQueryResult, Filters } from './use-component.model'; /** provides data to component ui page, making sure both variables and return value are safely typed and memoized */ export declare function useComponentQuery(componentId: string, host: string, filters?: Filters, skip?: boolean): ComponentQueryResult;