import { RecordTypeDeclaration, SourceOptions } from './source'; import { AssertTypeSelector } from './assert'; import { MatchersObject, MatchersUtils } from './matchers/types'; declare function fromFile(path: string, options?: SourceOptions): AssertTypeSelector; declare function fromRecord(record: Record, options?: SourceOptions): AssertTypeSelector; declare function fromRaw(code: string, options?: SourceOptions): AssertTypeSelector; export type * from './assert'; export type * from './source'; export type * from './load'; export * from './types'; export { default as t } from './types'; export { fromFile, fromRecord, fromRaw }; declare global { namespace jest { interface Matchers { toAssertTypeWith(matcherName: TMatcherName, params: Parameters, matchers: TMatchers, matchersUtils: MatchersUtils): void; } } } //# sourceMappingURL=index.d.ts.map