export function directionFactory({ types, directions, prefix, suffix, }: { types?: ((node: any) => string | null)[] | undefined; directions?: string[] | undefined; prefix?: string | undefined; suffix?: string | undefined; }): (tokenStream: any) => { [x: string]: any; }; export function parseShadowOffset(tokenStream: any): { width: any; height: any; }; export function parseShadow(tokenStream: any): { offset: { width: any; height: any; }; radius: any; color: any; };