/** Available route actions options */
export interface RouteAvailableAction {
    /** Type of the destination for this action */
    destination?: string;
    /** Action name */
    name: string;
    /** List of available HTTP status code if applicable */
    status?: number[];
    /** Protocol supported by this action */
    type: string;
}
//# sourceMappingURL=RouteAvailableAction.d.ts.map