import { Form, Organization } from '../@Types'; import { AppProps } from './App'; import { Branding } from '../@Types/Branding'; export declare const useSetupApp: (isEmbedded: boolean, props: 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;