import * as React from "react"; /** @internal */ export interface NestedBorderWrapperProps { className?: string; /** Number of bottom borders to draw (no more than side borders) */ bottomBorderCount: number; /** Number of side borders to draw */ borderCount: number; /** Node to wrap around */ children: React.ReactNode; } /** * FlatItemNestedBorderWrapper React component. * Wraps provided ReactNode in nested borders recursively according to provided borderCount. * @internal */ export declare function FlatItemNestedBorderWrapper(props: NestedBorderWrapperProps): JSX.Element; //# sourceMappingURL=FlatItemNestedBorderWrapper.d.ts.map