export declare const EXCLUDE_FROM_CYA: string[]; /** * Determines whether a given component should display on the Check your answers screen. * * @param {object} options The component options. * @param {object} data The data contained on the form. * * @returns A boolean true if the component should show; otherwise false. */ declare const showComponentCYA: (options: any, data: any) => any; export default showComponentCYA;