import ArtifactCard from '../components/ArtifactCard.vue';
import RowGridLayoutList from '../components/RowGridLayoutList.vue';
import ViewModeButtonGroup from '../components/ViewModeButtonGroup.vue';
import { TaskRun } from '../models';
import { ArtifactsFilter } from '../models/Filters';
type __VLS_Props = {
    taskRun: TaskRun;
};
declare const condense: import("vue").ComputedRef<boolean>;
declare const routes: {
    automations: () => {
        readonly name: "workspace.automations";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    automation: (automationId: string) => {
        readonly name: "workspace.automation.view";
        readonly params: {
            readonly automationId: string;
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    automationCreate: (automationQuery?: import("..").CreateAutomationQuery) => {
        readonly name: "workspace.automation.create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
        readonly query: import("vue-router").LocationQuery | undefined;
    };
    automationEdit: (automationId: string) => {
        readonly name: "workspace.automation.edit";
        readonly params: {
            readonly automationId: string;
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    automateEvent: (event: import("../models").WorkspaceEvent, actions?: import("..").AutomationAction[]) => {
        readonly name: "workspace.automation.create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
        readonly query: import("vue-router").LocationQuery;
    };
    automateFlow: (flowId: string, actions?: import("..").AutomationAction[]) => {
        readonly name: "workspace.automation.create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
        readonly query: import("vue-router").LocationQuery;
    };
    automateWorkPool: (workPoolId: string, actions?: import("..").AutomationAction[]) => {
        readonly name: "workspace.automation.create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
        readonly query: import("vue-router").LocationQuery;
    };
    automateWorkPoolQueue: (workPoolQueueId: string, actions?: import("..").AutomationAction[]) => {
        readonly name: "workspace.automation.create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
        readonly query: import("vue-router").LocationQuery;
    };
    events: () => {
        readonly name: "workspace.events";
    };
    event: (eventId: string, eventDate: Date) => {
        readonly name: "workspace.event";
        readonly params: {
            readonly eventId: string;
            readonly eventDate: string;
        };
    };
    artifact: (artifactId: string) => {
        readonly name: "workspace.artifacts.artifact";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly artifactId: string;
        };
    };
    artifactKey: (artifactKey: string) => {
        readonly name: "workspace.artifacts.artifact.key";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly artifactKey: string;
        };
    };
    artifacts: () => {
        readonly name: "workspace.artifacts";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    dashboard: () => {
        readonly name: "workspace.dashboard";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    runs: (query?: {
        tab?: string;
    }) => {
        readonly name: "workspace.runs";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
        readonly query: {
            tab?: string;
        } | undefined;
    };
    flowRuns: () => {
        readonly name: "workspace.flow-runs";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    flowRun: (flowRunId: string) => {
        readonly name: "workspace.runs.flow-run";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly flowRunId: string;
        };
    };
    taskRun: (taskRunId: string) => {
        readonly name: "workspace.runs.task-run";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly taskRunId: string;
        };
    };
    flows: () => {
        readonly name: "workspace.flows";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    flow: (flowId: string) => {
        readonly name: "workspace.flows.flow";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly flowId: string;
        };
    };
    flowCollections: () => {
        readonly name: "workspace.flows.collections";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    flowCollection: (name: string) => {
        readonly name: "workspace.flows.collections.collection";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly name: string;
        };
    };
    deployments: () => {
        readonly name: "workspace.deployments";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    deployment: (deploymentId: string) => {
        readonly name: "workspace.deployments.deployment";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly deploymentId: string;
        };
    };
    deploymentEdit: (deploymentId: string) => {
        readonly name: "workspace.deployments.deployment-edit";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly deploymentId: string;
        };
    };
    deploymentDuplicate: (deploymentId: string) => {
        readonly name: "workspace.deployments.deployment-duplicate";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly deploymentId: string;
        };
    };
    deploymentFlowRunCreate: (deploymentId: string, parameters?: Record<string, unknown>) => {
        readonly name: "workspace.deployments.deployment-flow-run-create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly deploymentId: string;
        };
        readonly query: {
            parameters: string;
        } | {
            parameters?: undefined;
        };
    };
    workQueues: () => {
        readonly name: "workspace.work-queues";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    workQueue: (workQueueId: string) => {
        readonly name: "workspace.work-queues.work-queue";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly workQueueId: string;
        };
    };
    workQueueCreate: () => {
        readonly name: "workspace.work-queues.work-queue-create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    workQueueEdit: (workQueueId: string) => {
        readonly name: "workspace.work-queues.work-queue-edit";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly workQueueId: string;
        };
    };
    blocks: () => {
        readonly name: "workspace.blocks";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    blocksCatalog: () => {
        readonly name: "workspace.blocks.catalog";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    blocksCatalogView: (blockTypeSlug: string) => {
        readonly name: "workspace.blocks.catalog-view";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly blockTypeSlug: string;
        };
    };
    blockCreate: (blockTypeSlug: string) => {
        readonly name: "workspace.blocks.block-create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly blockTypeSlug: string;
        };
    };
    block: (blockDocumentId: string) => {
        readonly name: "workspace.blocks.block";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly blockDocumentId: string;
        };
    };
    blockEdit: (blockDocumentId: string) => {
        readonly name: "workspace.blocks.block-edit";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly blockDocumentId: string;
        };
    };
    notifications: () => {
        readonly name: "workspace.notifications";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    notificationCreate: () => {
        readonly name: "workspace.notifications.create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    notificationEdit: (notificationId: string) => {
        readonly name: "workspace.notifications.notification-edit";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly notificationId: string;
        };
    };
    concurrencyLimit: (concurrencyLimitId: string) => {
        readonly name: "workspace.concurrency-limits.concurrency-limit";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly concurrencyLimitId: string;
        };
    };
    concurrencyLimits: () => {
        readonly name: "workspace.concurrency-limits";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    concurrencyLimitsV2: () => {
        readonly name: "workspace.concurrency-limits-v2";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    concurrencyLimitV2: (concurrencyLimitId: string) => {
        readonly name: "workspace.concurrency-limits-v2.concurrency-limit";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly concurrencyLimitId: string;
        };
    };
    variables: () => {
        readonly name: "workspace.variables";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    workPools: () => {
        readonly name: "workspace.work-pools";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    workPool: (workPoolName: string) => {
        readonly name: "workspace.work-pools.work-pool";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly workPoolName: string;
        };
    };
    workPoolCreate: () => {
        readonly name: "workspace.work-pools.work-pool-create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
        };
    };
    workPoolEdit: (workPoolName: string) => {
        readonly name: "workspace.work-pools.work-pool-edit";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly workPoolName: string;
        };
    };
    workPoolQueue: (workPoolName: string, workPoolQueueName: string) => {
        readonly name: "workspace.work-pools.work-pool.work-pool-queue";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly workPoolName: string;
            readonly workPoolQueueName: string;
        };
    };
    workPoolQueueCreate: (workPoolName: string) => {
        readonly name: "workspace.work-pools.work-pool.work-pool-queue-create";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly workPoolName: string;
        };
    };
    workPoolQueueEdit: (workPoolName: string, workPoolQueueName: string) => {
        readonly name: "workspace.work-pools.work-pool.work-pool-queue-edit";
        readonly params: {
            readonly accountId?: string | undefined;
            readonly workspaceId?: string | undefined;
            readonly workPoolName: string;
            readonly workPoolQueueName: string;
        };
    };
};
declare const artifactsSubscription: import("@prefecthq/vue-compositions").UseSubscription<(filter?: ArtifactsFilter) => Promise<import("../models").Artifact[]>>;
declare const artifacts: import("vue").ComputedRef<import("../models").Artifact[]>;
declare const emptyMessage: import("vue").ComputedRef<string>;
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
declare var __VLS_1: {};
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
    actions?: (props: typeof __VLS_1) => any;
}>;
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
    ArtifactCard: typeof ArtifactCard;
    RowGridLayoutList: typeof RowGridLayoutList;
    ViewModeButtonGroup: typeof ViewModeButtonGroup;
    condense: typeof condense;
    routes: typeof routes;
    artifactsSubscription: typeof artifactsSubscription;
    artifacts: typeof artifacts;
    emptyMessage: typeof emptyMessage;
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props & {}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props & {}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
