import { OnePartFunctionName } from './one-part-function-name';
export declare function isTwoPartFunctionName(obj: unknown): obj is TwoPartFunctionName;
export declare class TwoPartFunctionName extends OnePartFunctionName {
    readonly clusterPart: string;
    constructor(clusterPart: string, f: string);
    toString(): string;
}
//# sourceMappingURL=two-part-function-name.d.ts.map