/** Config test results */
export interface TestResult {
    /** Whether the given configuration pass the syntax test */
    isValid: boolean;
    /** Standard error */
    stderr?: string;
    /** Standard output */
    stdout?: string;
    /** Last config test update */
    updatedAt?: string;
}
//# sourceMappingURL=TestResult.d.ts.map