import type { StackProps, TypographyProps } from '@mui/material'; import type { PropsWithChildren, ReactNode } from 'react'; import React from 'react'; import type { TokenAvatarProps } from './TokenAvatar.tsx'; export type StandardTokenRowProps = PropsWithChildren<{ currency: 'xyo' | 'xl1' | null; customSymbol?: string; symbolOverride?: ReactNode; textVariant?: TypographyProps['variant']; textWeight?: React.CSSProperties['fontWeight']; tokenAvatarProps?: TokenAvatarProps; value: ReactNode; valueOverride?: ReactNode; } & StackProps>; export declare const StandardTokenRow: React.FC; //# sourceMappingURL=StandardTokenRow.d.ts.map