import { Profile } from '@ninetailed/client-sdk-core'; declare type UseFetchProfileOptions = { variables: { anonymousId: string; organizationId: string; }; skip?: boolean; }; export declare const useFetchProfile: ({ variables, skip, }: UseFetchProfileOptions) => [boolean, Profile | null, Error | null]; export {};