import React from 'react'; import { PageTitleProps, ButtonProps, MessageProps } from './types'; export declare const ButtonGoBack: ({ buttonAction, children, color, path }: ButtonProps) => React.JSX.Element; export declare const ContainerError: ({ children }: { children: any; }) => React.JSX.Element; export declare const ContentError: ({ alignx, children }: { alignx: any; children: any; }) => React.JSX.Element; export declare const Message: ({ children }: MessageProps) => React.JSX.Element; export declare const PageTitle: ({ color, children }: PageTitleProps) => React.JSX.Element;