export declare class Card { el: HTMLIfxCardElement; noBtns: boolean; /** Layout direction of the card. */ readonly direction: "horizontal" | "vertical"; alignment: string; noImg: boolean; /** Link the card should navigate to when clicked. */ readonly href: string; internalHref: string; /** Where to open the link. */ readonly target: string; /** Accessible label for screen readers. */ readonly ariaLabelText: string | null; /** If true, Card stretches to fill the available width. */ readonly fullWidth: boolean; /** Controls vertical placement of the buttons slot within the card. * "default" keeps buttons inline with content height. * "bottom" pins buttons to the bottom of the card. Only takes effect when fullWidth is true. */ readonly actionsPlacement: "default" | "bottom"; setImgPosition(event: any): void; private handleComponentAdjustment; componentWillLoad(): void; componentDidLoad(): Promise; componentWillUpdate(): void; render(): any; }