import { Context } from "../imports/Context"; import { RemoteTableAccessPolicy } from "./RemoteTableAccessPolicy"; export declare class RemoteTableDefinition { constructor(cx: Context, args: any[], ctorObj: Function, inNewExpr: boolean); getLabel(): string; getName(): string; getScope(): string; getTableAccessPolicy(): RemoteTableAccessPolicy; getUserRoles(): Array; static newWithLabelAndScope( label: string, scope: string ): RemoteTableDefinition; setLabel(label: string): void; setName(name: string): void; setScope(scope: string): void; setTableAccessPolicy(policy: RemoteTableAccessPolicy): void; setUserRoles(userRoles: any[]): void; }