import React from 'react'; import { ArgTypes } from '@storybook/react'; import { Icon } from '@primer/octicons-react'; type StoryContext = Record & { globals: { colorScheme: string; }; parameters: Record; }; export declare const colormodeFromScheme: (colorScheme: string) => "dark" | "light"; export declare const withThemeProvider: (Story: React.FC>, context: StoryContext) => string | number | boolean | Iterable | import("react/jsx-runtime").JSX.Element | null | undefined; export declare const toolbarTypes: { colorScheme: { name: string; description: string; defaultValue: string; toolbar: { icon: string; items: string[]; title: string; }; }; }; export declare const inputWrapperArgTypes: ArgTypes; export declare const getTextInputArgTypes: (category?: string) => Record; export declare const OcticonArgType: (iconList: Icon[]) => { options: string[]; control: string; mapping: Record; }; export {};