import type { SearchEmailsProps } from "../types/emails"; /** * Builds the SEARCH criteria string from the props object. * Returns null when there is nothing to search for. */ export declare function buildSearchQuery(props: SearchEmailsProps): string | null;