/** @jsxRuntime classic */
/** @jsx withSlots */
import * as React from 'react';
import type { IStackProps } from './Stack.types';
import type { IStackItemProps } from './StackItem/StackItem.types';
export declare const Stack: React.FunctionComponent<IStackProps> & {
    Item: React.FunctionComponent<IStackItemProps>;
};
export default Stack;
