import { GdsFormattedAccount } from '../../formatted-text/account/formatted-account.component'; /** * @element gds-sensitive-account * * @status beta * * [Source code](https://github.com/seb-oss/green/tree/main/libs/core/src/components/sensitiv/account) * * GdsSensitiveAccount is used to display accounts that need to be hidden * * The component renders the formatted account and conditionally hides it based on the `hide` property. * * @example * * */ export declare class GdsSensitiveAccount extends GdsFormattedAccount { /** * When true, hides the sensitive account. * @default false */ hide: boolean; render(): any; }