import React from 'react'; interface PageSectionProps { children?: React.ReactNode; title?: React.ReactNode; subtitle?: React.ReactNode; topActions?: React.ReactNode; } declare function PageSection(props: PageSectionProps): JSX.Element; export { PageSection };