import { CFCustomTable } from "../../CommonTypes"; export interface GetCustomTablesResponse { success: boolean; customTables: CFCustomTable[]; timestamp: string; } export type GetCustomTables = () => Promise;