import { default as React } from 'react'; export declare enum IslandCorner { TopLeft = 1, TopRight = 2, BottomLeft = 4, BottomRight = 8, Top = 3, Left = 5, Right = 10, Bottom = 12, All = 15 } export interface IslandProps { grow?: boolean; widthQ?: number; /** * Use IslandCorner enum to compose corner bits * * For example: two top corners would be `IslandCorner.TopLeft | IslandCorner.TopRight` or just `IslandCorner.Top` */ straightCorner?: number; children?: React.ReactNode; ref?: React.Ref; className?: string; } export declare function Island(props: IslandProps): import("react/jsx-runtime").JSX.Element;