import React from 'react'; import './Stack.scss'; export type StackProps = { children: React.ReactNode | React.ReactNode[]; 'data-testid'?: string; }; /** * Pass a full navigation stack of children, and then automatically does a sliding animation when the stack changes. * Adding items to the stack will do a "push" animation, and removing items from the stack will do a "pop" animation. */ export declare function Stack({ children, 'data-testid': dataTestId, }: StackProps): JSX.Element; export default Stack; //# sourceMappingURL=Stack.d.ts.map