/** * Validate all of the components on a page. * @param {object} page The page to validate * @param {array} queuedErrors Any errors that have been found before this validation. * @returns An array containing all of the errors. */ declare const validatePage: (page: any, queuedErrors?: never[]) => any; export default validatePage;