import { Server, ServerModule } from '@formio/appserver'; import { UAGProjectInterface } from './UAGProjectInterface'; import { UAGFormInterface } from './UAGFormInterface'; import { UAGConfig } from './config'; export type UAGModule = ServerModule & { config?: UAGConfig; }; export declare class UAGServer extends Server { constructor(config?: UAGConfig); router(): Promise; } export * from '@formio/appserver'; export * from './config'; export * from './tools'; export * from './router'; export * from './template'; export { UAGProjectInterface, UAGFormInterface };