import type { FunctionComponent, ReactElement } from 'react'; import type { ForwardProps } from '@pega/cosmos-react-core'; interface HashtagButtonProps { /** Text for the button, or an object containing all necessary props. */ children: Record | ReactElement; /** The tag value. */ tag?: string; } declare const HashtagButton: FunctionComponent; export declare const HashtagButtonConfig: { type: string; xmlElement: string; regexPattern: RegExp; component: FunctionComponent; inject: ({ tag }: { tag: string; }) => string | undefined; extract: (element: string) => { tag: string; } | undefined; }; export default HashtagButton; //# sourceMappingURL=HashtagButton.d.ts.map