import type { Meta } from '@storybook/react'; import { List } from './List'; /** * ```js * import { List } from "@galaxy-ds/core"; * ``` */ declare const meta: Meta; export default meta; /** * By default the list item background is fixed, we override the root with `sx` props to apply a hover color */ export declare const Default: { args: {}; parameters: { docs: { source: { code: string; }; }; }; render: (args: import("./List.types").ListProps) => import("react/jsx-runtime").JSX.Element; };