import * as React from 'react';
import type { HTMLProps } from 'react';
import type { TLBounds } from '../../types';
export interface ContainerProps extends HTMLProps {
id?: string;
bounds: TLBounds;
rotation?: number;
isGhost?: boolean;
isSelected?: boolean;
children: React.ReactNode;
}
declare function _Container({ id, bounds, rotation, isGhost, isSelected, children, ...props }: ContainerProps): JSX.Element;
export declare const Container: React.MemoExoticComponent;
export {};
//# sourceMappingURL=Container.d.ts.map