@primer/components
Version:
Primer react components
12 lines (11 loc) • 581 B
TypeScript
/// <reference types="react" />
import { SystemCommonProps, SystemTypographyProps } from '../constants';
import { SxProp } from '../sx';
import { ComponentProps } from '../utils/types';
declare const StyledHeader: import("styled-components").StyledComponent<"header", any, SystemTypographyProps & SystemCommonProps & SxProp, never>;
export declare type SelectMenuHeaderProps = ComponentProps<typeof StyledHeader>;
declare const SelectMenuHeader: {
({ children, theme, ...rest }: SelectMenuHeaderProps): JSX.Element;
displayName: string;
};
export default SelectMenuHeader;