export declare class BiCardAction { private inheritedAttributes; el: HTMLBiCardActionElement; /** * Disable the card action. * @default false */ disabled: boolean; /** /** * Indicates whether the card action is loading. * @default false */ loading: 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; }