import { FromSchema } from 'json-schema-to-ts';
export declare const splashSchema: {
    readonly $id: "#/components/schemas/splashSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["userId", "splashId", "seen"];
    readonly properties: {
        readonly userId: {
            readonly type: "number";
        };
        readonly splashId: {
            readonly type: "string";
        };
        readonly seen: {
            readonly type: "boolean";
        };
    };
    readonly components: {};
};
export declare type SplashSchema = FromSchema<typeof splashSchema>;
