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