import type { Report } from '../types/issues.ts';
type GetIncludedIssueTypesOptions = {
    isProduction?: boolean;
    include: string[];
    exclude: string[];
    includeOverrides?: string[];
    excludeOverrides?: string[];
};
export declare const defaultExcludedIssueTypes: string[];
export declare const shorthandDeps: string[];
export declare const shorthandExports: string[];
export declare const shorthandFiles: string[];
export declare const getIncludedIssueTypes: (options: GetIncludedIssueTypesOptions) => Report;
export {};
