import { TestCase } from './testcases.interface';
export interface Variables {
    url: string;
    username: string;
    password: string | undefined;
    environment: string | undefined;
    jirauser: string;
    projectName: string;
    projectId: string;
    defaultJiraId: string;
    jiraUserId: string;
    envId: number;
    testCasesArray: TestCase[];
    folderName?: string;
}
export declare const defaultVariables: Variables;
