import { InspectionInferedType } from './types';
interface ParsingResult<T> {
    inferedType: T;
    ast: any;
}
export declare function parse(value: string): ParsingResult<InspectionInferedType>;
export {};
