import { Step } from '../../../step';
export declare function usePageDetail(): {
    createPageDetail: (stepsData: Step[]) => {
        id: string;
        type: string;
        pageId: string;
        contents: {
            id: string;
            type: string;
            headerTemplate: string;
            contentTemplate: string;
            footerTemplate: string;
            contents: {
                id: string;
                type: string;
                appearance: {
                    class: string;
                };
                visible: boolean;
                useIsolateJs: boolean;
                externalCmp: null;
            }[];
        }[];
    }[];
};
