import { JSX } from 'react'; import { Agency, Property } from '../../models'; import { GlobalConfig as IGlobalConfig } from '../../state'; export type PropertyPageProps = { agency: Agency; property: Property; globalConfig: IGlobalConfig; }; export default function PropertyPage({ id, searchParams, children, }: { id: number; searchParams: { channel: string; }; children: (props: PropertyPageProps) => JSX.Element; }): Promise; //# sourceMappingURL=property-page.d.ts.map