import type { IdenticonProps } from '@ariestools/sdk-react/identicon'; import React from 'react'; import type { HeadingPaperProps } from '../HeadingPaper/index.js'; /** Props for {@link HashHeadingPaper}. */ export interface HashHeadingPaperProps extends HeadingPaperProps { hash?: string; identiconProps?: IdenticonProps; } /** Heading paper that displays a hash with an identicon. */ declare const HashHeadingPaper: { ({ ref, hash, identiconProps, ...props }: HashHeadingPaperProps & { ref?: React.Ref; }): React.JSX.Element; displayName: string; }; export { HashHeadingPaper }; //# sourceMappingURL=HashHeadingPaper.d.ts.map