import * as React from "react";
import type * as Common from "../../../common/types";
interface Props extends Common.Globals {
    initialExpanded: boolean;
    noPadding: boolean;
    onClick?: Common.Event<React.SyntheticEvent<HTMLDivElement> | React.KeyboardEvent<HTMLDivElement>>;
    title?: React.ReactNode;
    description?: React.ReactNode;
    header?: React.ReactNode;
    expanded?: boolean;
    icon?: React.ReactNode;
    htmlTitle?: string;
}
declare const TileExpandable: ({ initialExpanded, noPadding, children, onClick, title, expanded, description, header, icon, dataTest, htmlTitle, }: React.PropsWithChildren<Props>) => JSX.Element;
export default TileExpandable;
