///
import { TopProperty, BottomProperty } from "csstype";
export interface FixWidthProps extends React.DetailedHTMLProps, HTMLDivElement> {
top?: TopProperty;
bottom?: BottomProperty;
children?: React.ReactNode;
}
export declare function FixWidth(props: FixWidthProps): JSX.Element;