export declare const bakery: (key?: string) => {
    bake: (cookies: import("@sveltejs/kit").Cookies) => {
        bakedCookies: {
            [x: string]: any;
        };
        pie: {
            [x: string]: string;
        };
    };
    rebake: (pie?: {
        [x: string]: string;
    }) => {
        [x: string]: any;
    };
};
