import { STRING_MATCHER_TYPE } from '@contract-case/case-entities-internal'; import { AnyMatcherWithExample } from '../base'; /** * Matches any string. * @public */ export declare class AnyString extends AnyMatcherWithExample { /** @internal */ readonly '_case:matcher:type': typeof STRING_MATCHER_TYPE; /** @internal */ readonly '_case:matcher:example': string; /** @internal */ readonly '_case:matcher:resolvesTo' = "string"; /** @internal */ readonly '_case:context:matchBy' = "type"; /** * Matches any string. * @param example - An example string */ constructor(example: string); /** * For non-TypeScript implementations (see `AnyMatcher.toJSON`) * * @privateRemarks * This comment and the implementation is boilerplate on all matchers to avoid * outputting duplicate unimportant documentation on all matcher classes of * the docs. Only modify this comment or the implementation via search and replace. */ toJSON(): unknown; } //# sourceMappingURL=AnyString.d.ts.map