import React, { FC } from 'react'; export declare enum Shape { Rectangle = "rectangle", Pill = "pill", Underline = "underline" } declare const ShapeContext: React.Context; export interface ShapeContextProps { shape?: Shape; children?: React.ReactNode; } export declare const ShapeContextProvider: FC; export default ShapeContext;