import type { BaseProps, ChildrenProps, StylableProps } from '../../types/component';
export interface CardLayoutProps extends BaseProps, ChildrenProps, StylableProps {
    /**
     * Controls how the layout manages the borders of Cards
     * @default managed
     */
    borders?: 'managed' | 'none';
    /**
     * Controls the spacing on cards in the layout
     * @default edgeless-mobile
     */
    spacing?: 'edgeless-mobile' | 'separated';
}
