import { default as React } from 'react'; import { ListKind } from '@viasat/beam-shared/components/list'; interface ListKindContextProps { kind: ListKind | undefined; } export declare const ListKindProvider: ({ children, value, }: { children: React.ReactNode; value: ListKindContextProps; }) => import("react/jsx-runtime").JSX.Element; export declare const useListKind: () => ListKindContextProps; export {};