import { type ReactNode } from "react"; export interface TeamPageProps { /** * Optional wrapper around the page contents. Templates pass their own Layout * component so the Team page renders inside the template's chrome. */ layout?: (children: ReactNode) => ReactNode; /** * Title shown at the top of the page. Defaults to "Team". */ title?: string; /** * Hide the page title when this is rendered inside another titled surface, * such as the Settings > Team tab. */ showTitle?: boolean; /** * Description shown on the "Create an Organization" card. Defaults to * "Set up a team to collaborate with your colleagues." */ createOrgDescription?: string; /** * Class applied to the outer max-width container. Templates can use this to * tweak page width. */ className?: string; } /** * Default Team management page. Templates can route directly to this component * or wrap it with their own Layout via the `layout` prop. */ export declare function TeamPage({ layout, title, showTitle, createOrgDescription, className, }: TeamPageProps): import("react").JSX.Element; //# sourceMappingURL=TeamPage.d.ts.map