import * as react_jsx_runtime from 'react/jsx-runtime';

/**
 * Tipo que define as cores disponíveis para o componente Refresh
 */
type TRefreshColor = 'brand' | 'neutral' | 'black' | 'white';
type TRefreshProps = {
    color?: TRefreshColor;
    srText?: string;
};

declare function Refresh({ color, srText }: TRefreshProps): react_jsx_runtime.JSX.Element;

export { Refresh, type TRefreshProps };
