import * as React from 'react'; import { StandardProps } from '../../common'; export interface StackItemProps extends StandardProps { /** * Sets the items's children. */ children?: React.ReactNode; /** * Sets the width of the item. */ width?: string; /** * Sets the height of the item. */ height?: string; /** * Determines if the item should not fill the remaining space. */ nofill?: boolean; } /** * The stack item displays a single item within a stack panel. */ export declare class StackItem extends React.PureComponent { render(): JSX.Element; static inner: { readonly StackChild: any; }; }