import { FC, ReactNode } from 'react';
export interface ToolbarContainerProps {
    children: ReactNode;
    position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
    orientation?: 'horizontal' | 'vertical';
    title?: string;
    className?: string;
}
/**
 * ToolbarContainer component for consistent toolbar layout
 * Provides positioning and styling for toolbar content
 */
export declare const ToolbarContainer: FC<ToolbarContainerProps>;
//# sourceMappingURL=ToolbarContainer.d.ts.map