import { EventMetaData, Survey } from "../types"; type SurveyState = { currentSurvey: Survey | null; surveyFound: boolean; isLoading: boolean; }; /** * Uses getActiveMatchingSurveys to find the survey with the given id. * @param surveyId - id of the survey to find * @param eventMetaData - metadata to send with the survey dismissed event * @returns */ export declare const useGetActiveMatchingSurvey: (surveyId: string, eventMetaData?: EventMetaData) => SurveyState; export {};