import { type AppPlugin, EntityTypescript } from "../..";
export type SyncTypesOptions = {
    enabled?: boolean;
    includeFirstBoot?: boolean;
    write: (et: EntityTypescript) => Promise<void>;
};
export declare function syncTypes({ enabled, includeFirstBoot, write, }: SyncTypesOptions): AppPlugin;
