import { Notice } from './notice'; export interface BaseMetadata { /** * A list of notices to display in the panel. * These notices are passed down to the panel header * and can be used to inform the user about important * states, warnings, or messages related to the panel’s data or configuration. */ notices?: Notice[]; /** * The raw query that is executed to generate this data. * Useful when needing to inspect the query that was executed * after variables and other context modifications have been applied. */ executedQueryString?: string; } //# sourceMappingURL=base-metadata.d.ts.map