interface Props { include: boolean; } export declare class SchemaRouteBuilder { private readonly include; constructor({ include }: Props); execute(route: string[]): string[]; build(r: string): string; } export {};