/// /** @public */ export declare const apacheAirflowPlugin: import("@backstage/core-plugin-api").BackstagePlugin<{ root: import("@backstage/core-plugin-api").RouteRef; }, {}>; /** @public */ export declare const ApacheAirflowPage: () => import("react").JSX.Element; /** * Render the DAGs in a table * If the dagIds is specified, only those DAGs are loaded. * Otherwise, it's going to list all the DAGs * @public * @param dagIds - optional string[] of the DAGs to show in the table. If undefined, it will list all DAGs */ export declare const ApacheAirflowDagTable: (props: { dagIds?: string[] | undefined; }) => import("react").JSX.Element;