import React, { ReactNode } from 'react'; export interface CascadeProps { children: ReactNode; /** * Specify an optional className to be applied to * the container node. */ className?: string; /** * Specifies whether or not to wrap the child content in a ``. * If this is set to true it's important that the children are being wrapped in rows in columns. * Check the documentation for additional clarification. */ grid?: boolean; } /** This pattern is intended for use with cards, tiles, or similarly styled components. Use this patterns in areas that are the primary focus on the page to help the user along their journey or locate the most important information on the page. It should not be used on a page if it is the secondary focus of the page as that will distract the user. */ export declare const Cascade: React.ForwardRefExoticComponent>; //# sourceMappingURL=Cascade.d.ts.map