import { type Result } from './railway.js';
import { type AnyDataValue } from './build-model.js';
export type LoadingStatus = Result<AnyDataValue, {
    message: string;
    filename: string;
}>;
export declare const readYaml: (filename: string) => Promise<LoadingStatus>;
