import React from 'react'; import { DefaultProps, MantineNumberSize } from '@asuikit/styles'; import { HorizontalSectionPosition, HorizontalSectionWidth } from './HorizontalSection.styles'; export interface HorizontalSectionSharedProps extends DefaultProps { variant?: string; /** Component width with breakpoints */ width?: HorizontalSectionWidth; /** Component height */ height?: string | number; /** HorizontalSection content */ children: React.ReactNode; /** Determines whether the element should have border */ withBorder?: boolean; /** Set position to fixed */ fixed?: boolean; /** Position for fixed variant */ position?: HorizontalSectionPosition; /** Breakpoint at which component will be hidden if hidden prop is true */ hiddenBreakpoint?: MantineNumberSize; /** Set to true to hide component at hiddenBreakpoint */ hidden?: boolean; /** z-index */ zIndex?: React.CSSProperties['zIndex']; } export interface HorizontalSectionProps extends HorizontalSectionSharedProps, Omit, 'children'> { section: 'navbar' | 'aside'; __staticSelector: string; } export declare const HorizontalSection: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=HorizontalSection.d.ts.map