import { type ReactNode } from "react"; import { type IDashboardLayoutSizeByScreenSize } from "@gooddata/sdk-model"; import { type DashboardLayoutSectionBorderStatus } from "./types.js"; interface IDashboardLayoutSectionBorderProps { status: DashboardLayoutSectionBorderStatus; children?: ReactNode; renderBottomBorder?: boolean; itemSize?: IDashboardLayoutSizeByScreenSize; } export declare function DashboardLayoutSectionBorder({ status, renderBottomBorder, children, itemSize }: IDashboardLayoutSectionBorderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=DashboardLayoutSectionBorder.d.ts.map