/**
 * Copyright 2023 Design Barn Inc.
 */
interface StringifyOptions {
    /**
     * Adds indentation, white space, and line break characters to the return-value Lottie JSON text to make it easier to read.
     */
    indent: number;
}
declare const DEFAULT_OPTIONS: StringifyOptions;

export { DEFAULT_OPTIONS, type StringifyOptions };
