import type { HTMLAttributes } from 'svelte/elements';
interface Props extends HTMLAttributes<HTMLElement> {
    path?: string[];
    paths?: string[][];
}
declare const PathGenerator: import("svelte").Component<Props, {}, "path">;
type PathGenerator = ReturnType<typeof PathGenerator>;
export default PathGenerator;
