export declare const DRAFT_BOOTSTRAP_DATA_KEY = "fleek-agent-draft:init";
export declare const ROUTE_NEW_DRAFT = "/drafts/new";
export type DraftBootstrapData = {
    fromApp?: string;
    mode: 'chat' | 'form';
    prompt?: string;
    timestamp: Date;
};
export declare const setBootstrapData: ({ mode, fromApp, prompt, timestamp, }: {
    mode: "chat" | "form";
    fromApp?: "agents-ui" | "website";
    prompt?: string;
    timestamp?: Date;
}) => void;
export declare const getBootstrapData: () => DraftBootstrapData | undefined;
export declare const clearBootstrapData: () => void;
