import { ParserType } from '../styleParsers'; export type Parser = Array | ((rawValue: any) => any | undefined) | Record | Map | any; export declare function parseRawValue(rawValue: unknown, parser: T): ParserType | undefined;