import { SourceStyle } from "./source-style.js";
export declare function parseStyled(source: string, fileName?: string): {
    json: any;
    style: SourceStyle;
};
export declare function stringifyStyled(json: any, style: SourceStyle): string;
