export declare const displayQualtricsIntercept: ({ interceptId, }: {
    interceptId: string;
}) => Promise<{
    displayed: true;
}>;
export declare const setQualtricsProperties: ({ stringProperties, numberProperties, dateTimePropertyKeys, }: {
    stringProperties?: {
        [key: string]: string;
    } | undefined;
    numberProperties?: {
        [key: string]: number;
    } | undefined;
    dateTimePropertyKeys?: string[] | undefined;
}) => Promise<void>;
export declare const isQualtricsInterceptAvailableForUser: ({ interceptId, }: {
    interceptId: string;
}) => Promise<{
    isAvailable: boolean;
    surveyUrl?: string | null;
}>;
