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