import { HTMLAttributes, ReactNode, default as React } from 'react';
export interface GiftProps extends HTMLAttributes {
/**
* ID to find this component in testing tools (e.g.: cypress,
* testing-library, and jest).
*/
testId?: string;
/**
* A React component that will be rendered as an icon.
*/
icon?: ReactNode;
}
declare const Gift: React.ForwardRefExoticComponent>;
export default Gift;
//# sourceMappingURL=Gift.d.ts.map