import * as React from 'react'; import { IStackProps } from '@fluentui/react/lib/Stack'; export declare type Overflow = 'visible' | 'auto' | 'hidden'; export interface IExampleOptions { stackWidth: number; containerHeight: number; horizontalAlignment: IStackProps['horizontalAlign']; verticalAlignment: IStackProps['verticalAlign']; overflow: Overflow; } export declare const VerticalStackWrapAdvancedExample: React.FunctionComponent;