interface StageFlags {
    /**
     * The flag for checking if the condition is met.
     */
    flag: string;
    /**
     * The description of the flag.
     */
    description: string;
}

export type { StageFlags as default };
