import React from "react";
import "./Ui89Card.css";
import "../style/theme.css";
import { Ui89Palette, Ui89Theme } from "../theme";
export interface Ui89CardProps {
    theme?: Ui89Theme | keyof typeof Ui89Theme | Ui89Palette | keyof typeof Ui89Palette;
    topLeft?: React.ReactNode;
    topRight?: React.ReactNode;
    topCenter?: React.ReactNode;
    bottomLeft?: React.ReactNode;
    bottomRight?: React.ReactNode;
    bottomCenter?: React.ReactNode;
    children: React.ReactNode;
}
export declare function Ui89Card(props: Ui89CardProps): React.JSX.Element;
