/** Information about a configuration */
export interface ConfigurationRequirements {
    /** Indicates if some particular fields have to be inputed during the creation of `type` resource */
    fields?: string[];
    /** Label for your configuration item */
    label: string;
    /** Indicates if the configuration item is required */
    required: boolean;
    /** Type of the configuration item */
    type: string;
}
//# sourceMappingURL=ConfigurationRequirements.d.ts.map