import type { Property } from 'grapesjs';
import { GridProps } from '../Grid';
export interface Props extends Omit<GridProps, 'property'> {
    property?: Property | (Property | undefined)[];
    separator?: boolean;
    separatorTop?: boolean;
    bottom?: string;
}
export default function SectorRow({ className, children, bottom, separator, separatorTop, property, ...rest }: Props): import("react/jsx-runtime").JSX.Element | null;
