export declare class BiCardActionArea { private inheritedAttributes; el: HTMLBiCardActionAreaElement; /** * Disable the card action area. * @default false */ disabled: boolean; /** * Contains a URL or a URL fragment that the hyperlink points to. * If this property is set, a link styled as a button will be rendered. */ href?: string; /** * Specifies where to open the linked URL. * Only applies when an `href` is provided. */ target?: '_blank' | '_self' | '_parent' | '_top'; render(): any; }