import { MigrationCheckResultStruct } from './MigrationCheckResultStruct';
/** Check Migration result */
export interface MigrationCheckStruct {
    /** List of aliases */
    alias?: string[];
    /** List of errors */
    error?: MigrationCheckResultStruct[];
    /** List of filters */
    filter?: string[];
    /** List of forwards */
    forward?: string[];
    /** List of warnings */
    warning?: MigrationCheckResultStruct[];
}
//# sourceMappingURL=MigrationCheckStruct.d.ts.map