import React from "react";
export interface PageWrapperProps {
    /**
     *
     */
    children: React.ReactNode;
    /**
     * which background colour from the theme to choose
     */
    colour: string;
}
