import React from "react";
import "./Ui89BoxShadow.css";
export interface Ui89BoxShadowProps {
    children?: React.ReactNode;
    /**
     * The size of the shadow gap.
     */
    gap?: number;
    /**
     * The size of the shadow row gap.
     */
    rowGap?: number;
    /**
     * The size of the shadow column gap.
     */
    columnGap?: number;
}
export declare function Ui89BoxShadow({ children, gap, rowGap, columnGap, }: Ui89BoxShadowProps): React.JSX.Element;
