export declare type Options = {
    sourceFilename?: string;
    startLine: number;
    allowReturnOutsideFunction: boolean;
    allowSuperOutsideMethod: boolean;
    plugins: ReadonlyArray<string>;
    ranges: boolean;
    tokens: boolean;
};
export declare type InputOptions = {
    [O in keyof Options]?: Options[O];
};
export declare const defaultOptions: Options;
export declare function getOptions(opts: InputOptions | null): Options;
