import * as React from "react";
interface Props {
    noPadding: boolean;
    withPointer?: boolean;
    withBorder?: boolean;
    useMargins?: boolean;
}
declare const TileContent: React.ForwardRefExoticComponent<Props & {
    children?: React.ReactNode;
} & React.RefAttributes<HTMLDivElement>>;
export default TileContent;
