import IDocArgument from "./IDocArgument";
import IDocTypeReference from "./IDocTypeReference";
export default interface IDocFunction {
    arguments: IDocArgument[];
    is_constructor: boolean;
    is_member: boolean;
    is_static: boolean;
    raw_tsdoc_text?: string;
    raw_script_text?: string;
    ts_has_comments?: boolean;
    ts_has_remarks?: boolean;
    is_prerelease?: boolean;
    is_script_generated?: boolean;
    disallowed_in_read_only?: boolean;
    name: string;
    return_type: IDocTypeReference;
}
