export = FlowCardCondition; /** * @typedef {import('../manager/flow')} ManagerFlow */ /** * The FlowCardCondition class is a programmatic representation of a Flow Card with type `condition`, as defined in an app's app.json. * @extends FlowCard */ declare class FlowCardCondition extends FlowCard { /** * Get the current argument values of this card, as filled in by the user. * @returns {Promise} A Promise that resolves to an array of key-value objects with the argument's name as key. Every array entry represents one Flow card. */ getArgumentValues(): Promise; } declare namespace FlowCardCondition { export { ManagerFlow }; } import FlowCard = require("./FlowCard.js"); type ManagerFlow = import('../manager/flow');