import { RawValueSignature, SpecifyDesignTokenTypeName } from '@specifyapp/specify-design-token-format'; export type rawValueMatcher = { [K in SpecifyDesignTokenTypeName]?: (token: RawValueSignature) => T | undefined; }; export declare function matchRawValue(tokenMatcher: rawValueMatcher, missingFn: (token: RawValueSignature) => T | undefined, type: SpecifyDesignTokenTypeName, rawValue: RawValueSignature): T | undefined; //# sourceMappingURL=rawValueMatcher.d.ts.map