interface Props {
    sourceGuid: string;
    targetGuid: string;
    sourcePageID: number;
    locale: string;
}
export interface OtherLocaleMapping {
    PageIDOtherLanguage: number;
    OtherLanguageCode: string;
}
export declare const findPageInOtherLocale: ({ sourcePageID, locale, sourceGuid, targetGuid }: Props) => Promise<OtherLocaleMapping | null>;
export {};
