import * as t from 'io-ts';
import type { StatusCode } from '../statusCode';
export interface StatusCodeC extends t.Type<StatusCode, string | number, unknown> {
}
export declare const statusCodeT: StatusCodeC;
export interface StatusCodeWithZeroC extends t.Type<StatusCode | 0, string | number, unknown> {
}
export declare const statusCodeWithZeroT: StatusCodeWithZeroC;
