declare const _default: TestCase; export default _default; /** * Expected input to the test rule. * This will be checked for test applicability. * If the test is applicable, the rule will derive a test target from the Input, * then check expectations against the Target * returning a result with Outcomes */ export type Input = { actor: unknown; }; /** * The test will check expectations against test Target derived from Input */ export type Target = { assertionMethod: Array; }; /** * Outcome - every test Target has an outcome */ export type Outcome = import("../../test-utils").Outcome; /** * TestCase */ export type TestCase = import("../../test-utils").TestCase; //# sourceMappingURL=actor-objects-must-express-signing-key-as-assertionMethod-multikey.d.ts.map