type MakeProps = {
    linebreak?: string;
    indent?: string;
    shortArraySyntax?: boolean;
    stripSpaces?: boolean;
};
declare const make: (props?: MakeProps) => (obj: unknown, parentIndent?: string) => string;
declare const json2php: ReturnType<typeof make> & {
    make: typeof make;
};
export default json2php;
