import { ParamType } from "../ParamType";
import { ConstructorFragment } from "./ConstructorFragment";
import { JsonFragment } from "../SharedInterface";
export declare class FunctionFragment extends ConstructorFragment {
    constant: boolean;
    outputs?: Array<ParamType>;
    static from(value: FunctionFragment | JsonFragment | string): FunctionFragment;
    format(format?: string): string;
    static fromObject(value: FunctionFragment | JsonFragment): FunctionFragment;
    static fromString(value: string): FunctionFragment;
    static isFunctionFragment(value: any): value is FunctionFragment;
}
//# sourceMappingURL=FunctionFragment.d.ts.map