import * as React from 'react'; import { IStackProps } from '@fluentui/react/lib/Stack'; export interface IExampleOptions { numItems: number; showBoxShadow: boolean; preventOverflow: boolean; disableShrink: boolean; wrap: boolean; stackHeight: number; autoHeight: boolean; childrenGap: number; paddingLeft: number; paddingRight: number; paddingTop: number; paddingBottom: number; verticalAlignment: IStackProps['verticalAlign']; horizontalAlignment: IStackProps['horizontalAlign']; hideEmptyChildren: boolean; emptyChildren: string[]; } export declare const VerticalStackConfigureExample: React.FunctionComponent;