import React from 'react'; export interface FixedWidthContainerProps { width: number | string; className?: string; children?: React.ReactNode; } export declare const FixedWidthContainer: ({ width, className, children }: FixedWidthContainerProps) => React.ReactElement;