import { Automations } from "../metadata/metadata";
export declare function info(automations: Automations): AutomationInfo;
export interface AutomationInfo {
    name: string;
    version: string;
    team_ids?: string[];
    groups?: string[];
    description?: string;
    license?: string;
    author?: string;
    homepage?: string;
    client?: {
        name: string;
        version: string;
    };
    git?: {
        sha: string;
        branch: string;
        repository: string;
    };
    system?: {
        hostname: string;
        type: string;
        release: string;
        platform: string;
    };
}
//# sourceMappingURL=info.d.ts.map