10 lines
345 B
TypeScript
10 lines
345 B
TypeScript
/** @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;
|