type StatusColorTypes = 'default' | 'error' | 'success' | 'found' | 'warning' | 'loading'; export type StatusProps = { type?: StatusColorTypes; capitalize?: boolean; }; declare const StatusMessage: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, StatusProps, never>; export default StatusMessage;