import { Direction } from '../../utils/propTypes'; import { SpacingSize } from '../../common/SpacingProps'; export declare class BiShare { /** * The host element */ el: HTMLBiShareElement; /** * The direction of the social media buttons */ direction?: Direction; /** * The leading title of the social media buttons */ leadingTitle?: string; /** * Hide the X button */ hideX: boolean; /** * Hide the Facebook button */ hideFacebook: boolean; /** * Hide the LinkedIn button */ hideLinkedIn: boolean; /** * The dark mode of the social media buttons */ dark: boolean; /** * The margin size of the top */ top?: SpacingSize; /** * The margin size of the bottom */ bottom?: SpacingSize; /** * The margin size of the left */ left?: SpacingSize; /** * The margin size of the right */ right?: SpacingSize; componentWillLoad(): void; render(): any; }