import { IParseResponse } from './types';
export declare function parseJson<T>(input?: string): IParseResponse<T>;
export declare function parseYaml<T>(input?: string): IParseResponse<T>;
export declare function parseYamlFile<T>(path: string): Promise<IParseResponse<T>>;
