import { ZirconFunction } from "./ZirconFunction";
export declare class ZirconNamespace {
    private name;
    private functions;
    constructor(name: string, functions: ZirconFunction<any, any>[]);
    GetMembers(): readonly ZirconFunction<any, any>[];
    GetName(): string;
}
