import { Form, Organization } from '../@Types'; import { AppProps } from './App'; import { Branding } from '../@Types/Branding'; export declare const useSetupApp: (isEmbedded: boolean, { preview, internal, postview, partial, editable, handleConfirmed, customSteps, valuesData, apiKey, formData, classifiers, idCurrentAgent, ...others }: Omit) => { form: Form | undefined | null; organization: Organization | undefined | null; branding: Branding | undefined; reload: () => void; }; export declare const useLogRocket: (organization: Organization | null | undefined, form: Form | null | undefined, { apiKey, internal, postview, preview, }: Pick) => void;