export declare type ApiErrorType = {
    statusCode: number;
    error: string;
    message: string;
};
export declare type NestedApiErrorType = {
    message: ApiErrorType;
};
export declare const initialApiError: ApiErrorType;
export declare type SeoList = Array<{
    id: string | number;
    slug: string;
    noIndex?: string;
    noFollow?: string;
    hideInSitemap?: string;
}>;
