/** * @deprecated Please use tailwind classes instead * @slot default - Content of the stack */ export declare class NvStack { /****************************************************************************/ /** * Gutter refers to the space that exists between children components inside * the stack container. */ readonly gutter: number; /** * Fill will force the children to fill the stack depending of the direction * of the stack. In horizontal position, the children take the height of the * stack. In vertical position, the children take the width of the stack. */ readonly fill: boolean; /** * Flex will force the children to share the stack between the children * depending of the direction of the stack. In horizontal position, the * children width will share the width of the stack. In vertical position, * the children height will share the height of the stack. */ readonly flex: boolean; /** * Full set the width of the stack to 100%. * (same effect as WFull props) */ readonly full: boolean; /** * Display the element of the stack vertically. */ readonly vertical: boolean; /****************************************************************************/ render(): any; }