import { FlexPluginArguments } from '../lib/create-flex-plugin'; /** * Prompts the user to enter AccountSid * @private */ export declare const _promptForAccountSid: () => Promise; /** * Prompts the user to enter template URL * @private */ export declare const _promptForTemplateUrl: () => Promise; /** * Further validates the configuration * * @param config {FlexPluginArguments} the configuration * @return {Promise} */ declare const validate: (config: FlexPluginArguments) => Promise; export default validate;