export declare const regexDefinitions: {
    isCamelCase: RegExp;
    containsUnderscore: RegExp;
    containsDash: RegExp;
    containsDuplicateDriveLetters: RegExp;
    isDashCase: RegExp;
    containsSpecialChar: RegExp;
    driveLetterPattern: RegExp;
    isSnakeCase: RegExp;
    isPascalCase: RegExp;
    isConstantCase: RegExp;
    containsNonWordChar: RegExp;
    defaultFunctionRegex: RegExp;
    matchesDefaultExport: RegExp;
    matchesExportNamedAsDefault: RegExp;
    matchesNamedExport: RegExp;
    matchesTypeExport: RegExp;
    matchesInterfaceExport: RegExp;
    matchesFunctionExport: RegExp;
    matchesConstExport: RegExp;
    matchesLetExport: RegExp;
    matchesVarExport: RegExp;
    matchesEnumExport: RegExp;
    matchesClassExport: RegExp;
};
