import React from 'react'; declare type LocalLoadAttributes = React.ComponentPropsWithoutRef<'section'>; export interface LocalLoadProps extends Omit { /** * To enabled load animation on icon LocalLoad */ loading?: boolean; setRef?: React.MutableRefObject | React.Ref; /** * Set LocalLoad title */ title?: string; /** * Pass LocalLoad Icon click event callback */ onClick?: (e: React.MouseEvent) => void; } export {};