export type UserLinkStyle = "theme" | "plain"; export interface UserNameProps { /** @remarks We use a `string` instead of `api.UserName` because we don't want to pull in API types into the dependencies of this component. */ name: string; /** Undefined means no link. Otherwise, the link style. */ linkStyle?: UserLinkStyle | undefined; /** @remarks We use a `number` instead of `api.UserMark` because we don't want to pull in API types into the dependencies of this component. */ mark?: number; isOp?: boolean; } declare const _default: import("react").MemoExoticComponent; export default _default; declare function UserName({ name, isOp, linkStyle, mark }: UserNameProps): import("react").JSX.Element;