/** * Determines whether the given relative file path represents * a React page file * * Examples: * isReactPage("docs/index.page.tsx") → true * isReactPage("readme.md") → false * * @param relativePath - Path relative to the content root * @returns `true` if the file matches the React page pattern, otherwise `false` */ export declare const isReactPage: (relativePath: string) => boolean; //# sourceMappingURL=is-react-page.d.ts.map