export declare let displayError: (messageTxt: string, severity: "error" | "success") => void; export declare let showLoader: (messageTxt: boolean) => void; export declare let appTheme: object; type propsType = { colorPrimary?: string; children?: any; }; export default function MasterContainer({ colorPrimary, children }: propsType): import("react/jsx-runtime").JSX.Element; export {};