import React from 'react'; import type { BaseProps, ChildrenProps } from '~/types/component'; export interface InlineSuccessProps extends BaseProps, Required { /** The size of the text and icon, defaults to 'sm' */ size?: 'sm' | 'xs'; } export declare function InlineSuccess({ children, 'data-tag': dataTag, id, size }: InlineSuccessProps): React.JSX.Element;