export declare type StringToPath = StringToPath_; declare type StringToPath_ = StringPath extends `${infer Key}.${infer Rest}` ? StringToPath_> : AppendPath; declare type AppendPath = Item extends "" ? Path : [...Path, Item]; export declare const stringToPath: (path: T) => StringToPath_; export {};