export default function (app: any): Plugin;
interface Plugin {
    start: (app: any) => void;
    stop: () => void;
    sendKeepAlive: () => void;
    id: string;
    name: string;
    description: string;
    schema: any;
}
export {};
