import { DisplayLevel } from "./index.js";
export interface GitHubActionOptions {
    title?: string;
    useDetails?: boolean;
    showAnnotations: boolean;
    showAnnotationsInColumn?: boolean;
    showTags: boolean;
    showError?: boolean;
    quiet?: boolean;
    includeResults?: DisplayLevel[];
    debug?: boolean;
    showArtifactsLink?: boolean;
    azureStorageUrl?: string;
    azureStorageSAS?: string;
}
