/** * Apply properties to a page based on whether certain conditions are met. * @param {object} page The page object. * @returns A copy of the page object with any passing conditional * properties applied. */ declare const applyConditionalProperties: (page: any) => any; export default applyConditionalProperties;