import React, { PropsWithChildren } from 'react';
interface BarProps {
    /** Additional CSS classes to apply to the Bar component */
    classes?: string | string[];
}
/**
 * Constructs a horizontal Bar section using pre-defined Rijkswaterstaat styling
 * @example
 * ```jsx
 * <Bar>
 *   <div> Some Children </div>
 * </Bar>
 * ```
 */
export declare const Bar: React.MemoExoticComponent<({ classes, children, ...props }: PropsWithChildren<BarProps>) => JSX.Element>;
export {};
//# sourceMappingURL=index.d.ts.map