import { OpCommand, OpWorkflow } from './OpsYml';
export type OpsFindResponse = {
    data: (OpCommand | OpWorkflow)[];
    error: object[] | null;
};
export type OpsFindQuery = {
    team_id?: string;
    name?: string;
    search?: string;
};
export type WorkflowsFindResponse = {
    data: OpWorkflow[];
    error: object[] | null;
};
export type WorkflowsFindQuery = {
    teamId?: string;
    name?: string;
    search?: string;
};
