export declare const createTablePlugin: (sdk: { context: { api: import("../../..").ApiClient; resolveCredentials: () => Promise; }; } & { context: import("../../eventEmission").EventEmissionContext; } & { context: { meta: Record; }; }) => { createTable: (options?: { name: string; description?: string | undefined; } | undefined) => Promise<{ data: { id: string; name: string; created_at: string; edited_at: string; kind: "table" | "virtual_table"; account_id: string; profile_id: string; description?: string | undefined; parent_table_id?: string | undefined; }; }>; } & { context: { meta: { createTable: import("../../..").PluginMeta; }; }; }; export type CreateTablePluginProvides = ReturnType; //# sourceMappingURL=index.d.ts.map