/**
 * Converts a file path to an API route path.
 * @param filePath The file path to convert.
 * @param prefix The prefix to prepend to the route path.
 * @returns The API route path.
 */
export declare function filePathToApiRoutePath(filePath: string, prefix: string): string;
/**
 * Converts a file path to a page route path.
 * @param filePath The file path to convert.
 * @param prefix The prefix to prepend to the route path.
 * @returns The page route path.
 */
export declare function filePathToPageRoutePath(filePath: string, prefix: string): string;
