import { CreateStatusPageDTO } from '@meshwatch/types';
import * as Yup from 'yup';
export declare const CREATE_STATUS_PAGE_SCHEMA: Yup.ObjectSchema<Yup.Shape<object, CreateStatusPageDTO>>;
export declare const UPDATE_STATUS_PAGE_SCHEMA: Yup.ObjectSchema<Yup.Shape<object, CreateStatusPageDTO & {
    id: string;
}>>;
