import * as react_jsx_runtime from 'react/jsx-runtime';
import { ReactNode, ReactElement } from 'react';

interface TagProps extends React.ComponentPropsWithoutRef<'button'> {
    children: ReactNode;
    selected?: boolean;
}
declare const Tag: ({ children, selected, onClick, ...rest }: TagProps) => react_jsx_runtime.JSX.Element;
declare const TagsContainer: ({ children, className, focusgroup, }: {
    children: ReactNode;
    className?: string;
    focusgroup?: "horizontal";
}) => ReactElement;

export { Tag, type TagProps, TagsContainer };
