export declare const longhandCssPropObjectCallExpression = "\n
\n"; export declare const longhandCssPropTaggedTemplateExpression = "\n
\n"; export declare const longhandStyledObjectCallExpression = "\n const StyledComponent = styled.div({\n animationDuration: '2s',\n animationName: fadeOut,\n animationTimingFunction: 'ease-in-out',\n });\n"; export declare const longhandStyledTaggedTemplateExpression = "\n const StyledComponent = styled.div`\n animation-duration: 2s;\n animation-name: ${fadeOut};\n animation-timing-function: ease-in-out;\n `;\n"; export declare const shorthandCssPropObjectCallExpression = "
"; export declare const shorthandCssPropTaggedTemplateExpression = "
"; export declare const shorthandStyledObjectCallExpression = "\n const StyledComponent = styled.div({\n animation: `${fadeOut} 2s ease-in-out`,\n });\n"; export declare const shorthandStyledTaggedTemplateExpression = "\n const StyledComponent = styled.div`\n animation: ${fadeOut} 2s ease-in-out;\n `;\n";